You need to sign in or sign up before continuing.
Commit f960e510 authored by bitplane's avatar bitplane

removed namespace from matrix4 constructor enum to make it compile again in VC

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@682 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 4145d01f
...@@ -277,7 +277,7 @@ namespace core ...@@ -277,7 +277,7 @@ namespace core
}; };
template <class T> template <class T>
inline CMatrix4<T>::CMatrix4( CMatrix4<T>::eConstructor constructor ) : definitelyIdentityMatrix(false) inline CMatrix4<T>::CMatrix4( eConstructor constructor ) : definitelyIdentityMatrix(false)
{ {
#if 0 #if 0
switch ( constructor ) switch ( constructor )
...@@ -296,7 +296,7 @@ namespace core ...@@ -296,7 +296,7 @@ namespace core
} }
template <class T> template <class T>
inline CMatrix4<T>::CMatrix4( const CMatrix4<T>& other,CMatrix4<T>::eConstructor constructor) : definitelyIdentityMatrix(false) inline CMatrix4<T>::CMatrix4( const CMatrix4<T>& other, eConstructor constructor) : definitelyIdentityMatrix(false)
{ {
#if 0 #if 0
switch ( constructor ) switch ( constructor )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment