|
|
@@ -140,19 +140,19 @@ namespace detail
|
|
|
template <typename U>
|
|
|
GLM_FUNC_DECL tmat4x4<T> & operator= (tmat4x4<U> const & m);
|
|
|
template <typename U>
|
|
|
- GLM_FUNC_DECL tmat4x4<T> & operator+= (U const & s);
|
|
|
+ GLM_FUNC_DECL tmat4x4<T> & operator+= (U s);
|
|
|
template <typename U>
|
|
|
GLM_FUNC_DECL tmat4x4<T> & operator+= (tmat4x4<U> const & m);
|
|
|
template <typename U>
|
|
|
- GLM_FUNC_DECL tmat4x4<T> & operator-= (U const & s);
|
|
|
+ GLM_FUNC_DECL tmat4x4<T> & operator-= (U s);
|
|
|
template <typename U>
|
|
|
GLM_FUNC_DECL tmat4x4<T> & operator-= (tmat4x4<U> const & m);
|
|
|
template <typename U>
|
|
|
- GLM_FUNC_DECL tmat4x4<T> & operator*= (U const & s);
|
|
|
+ GLM_FUNC_DECL tmat4x4<T> & operator*= (U s);
|
|
|
template <typename U>
|
|
|
GLM_FUNC_DECL tmat4x4<T> & operator*= (tmat4x4<U> const & m);
|
|
|
template <typename U>
|
|
|
- GLM_FUNC_DECL tmat4x4<T> & operator/= (U const & s);
|
|
|
+ GLM_FUNC_DECL tmat4x4<T> & operator/= (U s);
|
|
|
template <typename U>
|
|
|
GLM_FUNC_DECL tmat4x4<T> & operator/= (tmat4x4<U> const & m);
|
|
|
GLM_FUNC_DECL tmat4x4<T> & operator++ ();
|