Skip to content

Commit

Permalink
gna
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Jan 17, 2024
1 parent 14cba1b commit 086365c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions test/core/core_force_cxx03.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifdef GLM_FORCE_CXX_UNKNOWN
#undef GLM_FORCE_CXX_UNKNOWN
#endif
#ifdef GLM_FORCE_CXX20
#undef GLM_FORCE_CXX20
#endif
Expand Down
3 changes: 3 additions & 0 deletions test/core/core_force_cxx98.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifdef GLM_FORCE_CXX_UNKNOWN
#undef GLM_FORCE_CXX_UNKNOWN
#endif
#ifdef GLM_FORCE_CXX20
#undef GLM_FORCE_CXX20
#endif
Expand Down
4 changes: 2 additions & 2 deletions test/core/core_type_vec2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,15 +234,15 @@ static int test_ctor()
{
glm::vec2 a{ 0, 1 };
std::vector<glm::vec2> v = {
{0, 1},
a,
{4, 5},
{8, 9}};
}

{
glm::dvec2 a{ 0, 1 };
std::vector<glm::dvec2> v = {
{0, 1},
a,
{4, 5},
{8, 9}};
}
Expand Down

0 comments on commit 086365c

Please sign in to comment.