SSE2: Compile fix

This commit is contained in:
kaetemi 2014-06-20 03:08:51 +02:00
parent 2a87923ced
commit 39894f4a99
2 changed files with 1 additions and 9 deletions

View file

@ -383,7 +383,7 @@ extern void operator delete[](void *p) throw();
#else /* NL_HAS_SSE2 */ #else /* NL_HAS_SSE2 */
#define NL_DEFAULT_MEMORY_ALIGNMENT 4 #define NL_DEFAULT_MEMORY_ALIGNMENT 4
#define NL_ALIGN_SSE2(nb) #define NL_ALIGN_SSE2
#endif /* NL_HAS_SSE2 */ #endif /* NL_HAS_SSE2 */

View file

@ -140,10 +140,6 @@ inline void CMatrix::testExpandRot() const
self->Scale33= 1; self->Scale33= 1;
} }
} }
void CMatrix::testExpandRotEx() const
{
testExpandRot();
}
inline void CMatrix::testExpandProj() const inline void CMatrix::testExpandProj() const
{ {
@ -156,10 +152,6 @@ inline void CMatrix::testExpandProj() const
self->a41=0; self->a42=0; self->a43=0; self->a44=1; self->a41=0; self->a42=0; self->a43=0; self->a44=1;
} }
} }
void CMatrix::testExpandProjEx() const
{
testExpandProj();
}
// ====================================================================================================== // ======================================================================================================