Fixed missing precision aualifier in template

Fixed missing precision aualifier in template to remove compiler
errors. (AppleClang - Xcode 5)
This commit is contained in:
Ed Preston
2013-11-15 22:11:22 -05:00
parent dadab89566
commit 0ee6673470
2 changed files with 12 additions and 12 deletions

View File

@@ -54,7 +54,7 @@ namespace glm
//! Transforms a matrix with a shearing on X axis.
//! From GLM_GTX_transform2 extension.
template <typename T>
template <typename T, precision P>
detail::tmat3x3<T, P> shearX2D(
detail::tmat3x3<T, P> const & m,
T y);