Browse Source

Fixed C++98 build

Christophe Riccio 10 years ago
parent
commit
303a523325
2 changed files with 2 additions and 2 deletions
  1. 1 1
      glm/gtx/io.hpp
  2. 1 1
      glm/gtx/io.inl

+ 1 - 1
glm/gtx/io.hpp

@@ -224,7 +224,7 @@ namespace glm
 	GLM_FUNC_DECL std::basic_ostream<CTy,CTr> & operator<<(
 		std::basic_ostream<CTy,CTr> &,
 		std::pair<tmat4x4<T,P>,
-		tmat4x4<T,P>> const &);
+		tmat4x4<T,P> > const &);
 
 	/// @}
 }//namespace glm

+ 1 - 1
glm/gtx/io.inl

@@ -649,7 +649,7 @@ namespace io
 	template <typename CTy, typename CTr, typename T, precision P>
 	GLM_FUNC_QUALIFIER std::basic_ostream<CTy,CTr>& operator<<(
 		std::basic_ostream<CTy,CTr> & os,
-		std::pair<tmat4x4<T,P>, tmat4x4<T,P>> const& a)
+		std::pair<tmat4x4<T,P>, tmat4x4<T,P> > const& a)
 	{
 		return operator<<(os, static_cast<std::pair<tmat4x4<T,P> const, tmat4x4<T,P> const> const&>(a));
 	}