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
master
bitplane 2007-06-03 20:44:11 +00:00
parent 4145d01f4a
commit f960e51037
1 changed files with 2 additions and 2 deletions

View File

@ -277,7 +277,7 @@ namespace core
};
template <class T>
inline CMatrix4<T>::CMatrix4( CMatrix4<T>::eConstructor constructor ) : definitelyIdentityMatrix(false)
inline CMatrix4<T>::CMatrix4( eConstructor constructor ) : definitelyIdentityMatrix(false)
{
#if 0
switch ( constructor )
@ -296,7 +296,7 @@ namespace core
}
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
switch ( constructor )