Fixed unitilized constructor on MacOSX

This commit is contained in:
Christophe Riccio 2014-10-24 21:30:11 +02:00
parent bf9e4458b6
commit cb8250c20b
2 changed files with 8 additions and 2 deletions

View File

@ -798,3 +798,11 @@ namespace detail
# pragma message("GLM: #define GLM_FORCE_SIZE_T_LENGTH for .length() to return a size_t")
# endif
#endif//GLM_MESSAGE
///////////////////////////////////////////////////////////////////////////////////////////////////
// Uninitialize constructors
namespace glm
{
enum ctor{uninitialize};
}//namespace glm

View File

@ -33,8 +33,6 @@
namespace glm
{
enum ctor{uninitialize};
template <typename T, precision P> struct tvec1;
template <typename T, precision P> struct tvec2;
template <typename T, precision P> struct tvec3;