glm/test/bug/bug_ms_vec_static.cpp
Christophe Riccio b7a286b186 Renamed test
2016-09-25 10:35:30 +02:00

15 lines
160 B
C++

#define GLM_FORCE_SWIZZLE
#include <glm/vec2.hpp>
struct Foo
{
static glm::vec2 Bar;
};
glm::vec2 Foo::Bar = glm::vec2(1.f, 1.f);
int main()
{
return 0;
}