summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/glm/test/bug/bug_ms_vec_static.cpp
blob: 812d97b3cad073726e600dd854aaf2e368bdf40b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}