diff --git a/glm/gtx/io.hpp b/glm/gtx/io.hpp index 1ddaffa7..f30cd0fe 100644 --- a/glm/gtx/io.hpp +++ b/glm/gtx/io.hpp @@ -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 // 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" diff --git a/glm/gtx/io.inl b/glm/gtx/io.inl index e14bf9d9..d4ef825e 100644 --- a/glm/gtx/io.inl +++ b/glm/gtx/io.inl @@ -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 +