Removed development replacement code. Sorry, this was not meant to be in SVN...

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@683 dfc29bdd-3216-0410-991c-e03cc46cb475
master
hybrid 2007-06-03 21:15:48 +00:00
parent f960e51037
commit db6011aae3
1 changed files with 0 additions and 6 deletions

View File

@ -279,7 +279,6 @@ namespace core
template <class T>
inline CMatrix4<T>::CMatrix4( eConstructor constructor ) : definitelyIdentityMatrix(false)
{
#if 0
switch ( constructor )
{
case EM4CONST_NOTHING:
@ -291,14 +290,11 @@ namespace core
makeIdentity();
break;
}
#endif
makeIdentity();
}
template <class T>
inline CMatrix4<T>::CMatrix4( const CMatrix4<T>& other, eConstructor constructor) : definitelyIdentityMatrix(false)
{
#if 0
switch ( constructor )
{
case EM4CONST_IDENTITY:
@ -323,8 +319,6 @@ namespace core
*this=getTransposed();
break;
}
#endif
*this = other;
}
//! Add another matrix.