This commit is contained in:
Christophe 2024-01-18 23:12:06 +01:00
parent 9d78651529
commit 2aaba30aa7
2 changed files with 14 additions and 2 deletions

View file

@ -33,6 +33,7 @@
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wpadded"
# pragma clang diagnostic ignored "-Wshorten-64-to-32"
# pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
#include <iosfwd> // std::basic_ostream<> (fwd)
@ -202,9 +203,8 @@ namespace glm
/// @}
}//namespace glm
#include "io.inl"
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic pop
#endif
#include "io.inl"

View file

@ -6,6 +6,13 @@
#include "../gtc/matrix_access.hpp" // glm::col, glm::row
#include "../gtx/type_trait.hpp" // glm::type<>
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wpadded"
# pragma clang diagnostic ignored "-Wshorten-64-to-32"
# pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
namespace glm{
namespace io
{
@ -438,3 +445,8 @@ namespace detail
return detail::print_matrix_pair_on(os, a);
}
}//namespace glm
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic pop
#endif