From aa7951aaa4374d7be1e4a273e14c9a34200930c3 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 17 Jul 2016 10:54:53 +0200 Subject: [PATCH] Fixed long long warnings --- glm/detail/func_integer.inl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/glm/detail/func_integer.inl b/glm/detail/func_integer.inl index 0891eb01..7d89bfe2 100644 --- a/glm/detail/func_integer.inl +++ b/glm/detail/func_integer.inl @@ -12,6 +12,13 @@ #endif//(GLM_ARCH & GLM_ARCH_X86 && GLM_COMPILER & GLM_COMPILER_VC) #include +#if GLM_COMPILER & GLM_COMPILER_GCC +# pragma GCC diagnostic ignored "-Wlong-long" +#endif +#if (GLM_COMPILER & GLM_COMPILER_CLANG) +# pragma clang diagnostic ignored "-Wc++11-long-long" +#endif + namespace glm{ namespace detail {