Fixed increment and decrement operators tests

This commit is contained in:
Christophe Riccio
2013-05-10 01:44:13 +02:00
parent 4a93e0ab70
commit 28d8e7f251
5 changed files with 15 additions and 9 deletions

View File

@@ -33,7 +33,7 @@ namespace glm
{
#define GLM_CXX11_USER_LITERALS
#ifdef GLM_CXX11_USER_LITERALS
/*
GLM_FUNC_QUALIFIER detail::half operator "" _h(long double const s)
{
return detail::half(s);
@@ -43,7 +43,7 @@ namespace glm
{
return static_cast<float>(s);
}
*/
#endif//GLM_CXX11_USER_LITERALS
}//namespace glm

View File

@@ -40,5 +40,5 @@ int main()
{
//auto d = 90.0_deg;
glm::vec3 v{0, 1, 2};
//glm::vec3 v{0, 1, 2};
}