mirror of
https://github.com/g-truc/glm.git
synced 2024-11-29 19:34:36 +00:00
Fixed C++98 build
This commit is contained in:
parent
084804111e
commit
303a523325
@ -224,7 +224,7 @@ namespace glm
|
|||||||
GLM_FUNC_DECL std::basic_ostream<CTy,CTr> & operator<<(
|
GLM_FUNC_DECL std::basic_ostream<CTy,CTr> & operator<<(
|
||||||
std::basic_ostream<CTy,CTr> &,
|
std::basic_ostream<CTy,CTr> &,
|
||||||
std::pair<tmat4x4<T,P>,
|
std::pair<tmat4x4<T,P>,
|
||||||
tmat4x4<T,P>> const &);
|
tmat4x4<T,P> > const &);
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
}//namespace glm
|
}//namespace glm
|
||||||
|
@ -649,7 +649,7 @@ namespace io
|
|||||||
template <typename CTy, typename CTr, typename T, precision P>
|
template <typename CTy, typename CTr, typename T, precision P>
|
||||||
GLM_FUNC_QUALIFIER std::basic_ostream<CTy,CTr>& operator<<(
|
GLM_FUNC_QUALIFIER std::basic_ostream<CTy,CTr>& operator<<(
|
||||||
std::basic_ostream<CTy,CTr> & os,
|
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));
|
return operator<<(os, static_cast<std::pair<tmat4x4<T,P> const, tmat4x4<T,P> const> const&>(a));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user