Improved pure code path

This commit is contained in:
Christophe Riccio
2011-10-18 11:21:34 +01:00
parent 911df15e8a
commit b056a22498
4 changed files with 33 additions and 0 deletions

View File

@@ -18,6 +18,8 @@
#include <ctime>
#include <vector>
#if(GLM_ARCH != GLM_ARCH_PURE)
std::vector<float> test_detA(std::vector<glm::mat4> const & Data)
{
std::vector<float> Test(Data.size());
@@ -288,3 +290,13 @@ int main()
return Error;
}
#else
int main()
{
int Error = 0;
return Error;
}
#endif//(GLM_ARCH != GLM_ARCH_PURE)