From 303a5233252922690898489fbe756e905d5f2ba0 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Fri, 1 May 2015 20:49:58 +0200 Subject: [PATCH] Fixed C++98 build --- glm/gtx/io.hpp | 2 +- glm/gtx/io.inl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/glm/gtx/io.hpp b/glm/gtx/io.hpp index dcb706af..a52ab9c0 100644 --- a/glm/gtx/io.hpp +++ b/glm/gtx/io.hpp @@ -224,7 +224,7 @@ namespace glm GLM_FUNC_DECL std::basic_ostream & operator<<( std::basic_ostream &, std::pair, - tmat4x4> const &); + tmat4x4 > const &); /// @} }//namespace glm diff --git a/glm/gtx/io.inl b/glm/gtx/io.inl index 38202485..92c68732 100644 --- a/glm/gtx/io.inl +++ b/glm/gtx/io.inl @@ -649,7 +649,7 @@ namespace io template GLM_FUNC_QUALIFIER std::basic_ostream& operator<<( std::basic_ostream & os, - std::pair, tmat4x4> const& a) + std::pair, tmat4x4 > const& a) { return operator<<(os, static_cast const, tmat4x4 const> const&>(a)); }