namespace pollution fix

This commit is contained in:
Steve Checkoway
2005-08-20 06:19:33 +00:00
parent d837282c96
commit 6289241cdb
+9
View File
@@ -14,7 +14,16 @@
#include <float.h>
#if defined(__MACOSX__)
// Work around global namespace pollution.
namespace vblas
{
# include <vecLib/vBLAS.h>
}
using vblas::cblas_sgemv;
using vblas::cblas_sgemm;
using vblas::CblasRowMajor;
using vblas::CblasTrans;
using vblas::CblasNoTrans;
#endif
void RageVec3ClearBounds( RageVector3 &mins, RageVector3 &maxs )