28 lines
669 B
C++
28 lines
669 B
C++
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
// OpenGL Mathematics Copyright (c) 2005 - 2009 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 <gli/gli.hpp>
|
||
|
|
||
|
namespace glm{
|
||
|
namespace test
|
||
|
{
|
||
|
bool main_bug()
|
||
|
{
|
||
|
bool Result = true;
|
||
|
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
return Result;
|
||
|
}
|
||
|
|
||
|
}//namespace test
|
||
|
}//namespace glm
|