mirror of
https://github.com/g-truc/glm.git
synced 2025-04-13 08:43:00 +00:00
Fixed warning, ticket #118
This commit is contained in:
parent
b2cb4fe479
commit
d46aa44034
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ namespace detail
|
|||
{
|
||||
class thalf;
|
||||
|
||||
#if(__STDC_VERSION__ && (__STDC_VERSION__ >= 199901L)) // C99 detected, 64 bit types available
|
||||
#if(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) // C99 detected, 64 bit types available
|
||||
typedef int64_t sint64;
|
||||
typedef uint64_t uint64;
|
||||
#elif(GLM_COMPILER & GLM_COMPILER_VC)
|
||||
|
|
Loading…
Add table
Reference in a new issue