These lookup tables should be const

This commit is contained in:
Matt Williams
2012-02-25 22:56:54 +00:00
parent 1bc263807f
commit 5fb0e43ac4
2 changed files with 5 additions and 5 deletions

View File

@ -28,8 +28,8 @@ freely, subject to the following restrictions:
namespace PolyVox
{
extern POLYVOX_API int edgeTable[256];
extern POLYVOX_API int triTable[256][16];
extern const POLYVOX_API int edgeTable[256];
extern const POLYVOX_API int triTable[256][16];
}
#endif