bug_ms_vec_static.cpp 222 B

12345678910
  1. #define GLM_FORCE_SWIZZLE
  2. #include <glm/vec2.hpp>
  3. // Visual C++ has a bug generating the error: fatal error C1001: An internal error has occurred in the compiler.
  4. glm::vec2 const Bar(1.f, 1.f);
  5. int main()
  6. {
  7. return 0;
  8. }