You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current version (0.9.4.5) the compiler detection code in setup.hpp assigns GLM_COMPILER to be GLM_COMPILER_VC for any unknown _MSC_VER. For Visual Studio 2013 preview this then uncovers an error in _detail.hpp:476 in macro:
#define GLM_ALIGNED_STRUCT(x)
(missing 'struct')
Even though this is the thing that makes GLM fail to compile on VS2013, it would be good to alter the compiler detection so that any newer than known _MSC_VER compiler version sets the GLM_COMPILER to the latest known version.
The text was updated successfully, but these errors were encountered:
In the current version (0.9.4.5) the compiler detection code in setup.hpp assigns GLM_COMPILER to be GLM_COMPILER_VC for any unknown _MSC_VER. For Visual Studio 2013 preview this then uncovers an error in _detail.hpp:476 in macro:
#define GLM_ALIGNED_STRUCT(x)
(missing 'struct')
Even though this is the thing that makes GLM fail to compile on VS2013, it would be good to alter the compiler detection so that any newer than known _MSC_VER compiler version sets the GLM_COMPILER to the latest known version.
The text was updated successfully, but these errors were encountered: