Added typedef for chunk key type.

This commit is contained in:
David Williams
2015-03-20 16:59:25 +01:00
parent 8bd8f8ba7a
commit 6419c5827b
3 changed files with 18 additions and 14 deletions

View File

@ -24,6 +24,8 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Config_H__
#define __PolyVox_Config_H__
#include <cstdint>
//#define POLYVOX_LOG_TRACE_ENABLED
//#define POLYVOX_LOG_DEBUG_ENABLED
#define POLYVOX_LOG_INFO_ENABLED
@ -34,4 +36,6 @@ freely, subject to the following restrictions:
//#define POLYVOX_ASSERTS_ENABLED
#define POLYVOX_THROW_ENABLED
typedef int32_t PagedVolumeChunkKeyIntType;
#endif