| 123456789101112131415161718192021222324252627 |
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- // OpenGL Mathematics Copyright (c) 2005 - 2010 G-Truc Creation (www.g-truc.net)
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- // Created : 2009-11-14
- // Updated : 2009-11-14
- // Licence : This source is under MIT licence
- // File : test/bug.cpp
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- #include <glm/glm.hpp>
- namespace glm{
- namespace test
- {
- bool main_bug()
- {
- bool Result = true;
- {
- }
-
- return Result;
- }
- }//namespace test
- }//namespace glm
|