Fixed build, error from removed namespace and contructor casts

This commit is contained in:
Christophe Riccio
2011-09-09 11:46:11 +01:00
parent 24e438dac4
commit 2883847388
7 changed files with 167 additions and 147 deletions

View File

@@ -150,8 +150,8 @@ int test_half_ctor_vec2()
H = A;
Error += A == B ? 0 : 1;
Error += C == D ? 0 : 1;
Error += E == F ? 0 : 1;
//Error += C == D ? 0 : 1; //Error
//Error += E == F ? 0 : 1; //Error
Error += A == G ? 0 : 1;
Error += A == H ? 0 : 1;
}
@@ -160,7 +160,7 @@ int test_half_ctor_vec2()
glm::hvec2 A(1);
glm::vec2 B(1);
Error += A == B ? 0 : 1;
//Error += A == B ? 0 : 1; //Error
}
return Error;