Added initial implementation for forward declarations: int and float scalar types, #56

This commit is contained in:
Christophe Riccio
2013-03-31 01:16:13 +01:00
parent 6a96cd819a
commit 39cf417691
16 changed files with 504 additions and 421 deletions

View File

@@ -254,6 +254,13 @@ int test_model()
return Error;
}
int test_cpp_version()
{
std::cout << "__cplusplus: " << __cplusplus << std::endl;
return 0;
}
int test_operators()
{
glm::vec3 A(1.0f);
@@ -268,6 +275,7 @@ int main()
{
int Error = 0;
Error += test_cpp_version();
Error += test_compiler();
Error += test_model();
Error += test_operators();