vecmat3.cc fix for older compiler compatibility

This commit is contained in:
Jiri Pittner 2021-10-07 14:07:21 +02:00
parent 4a08475527
commit 8079bd8820
1 changed files with 4 additions and 2 deletions

View File

@ -18,11 +18,11 @@
#include "vecmat3.h"
using namespace LA_Vecmat3;
namespace LA_Vecmat3 {
//http://en.wikipedia.org/wiki/Fast_inverse_square_root
float LA_Vecmat3::fast_sqrtinv(float number )
float fast_sqrtinv(float number )
{
long i;
float x2, y;
@ -518,3 +518,5 @@ INSTANTIZE2(float)
INSTANTIZE2(double)
#endif
#endif
}//namespace