Fix for compilation issues

This commit is contained in:
Konstantinos Chatzilygeroudis 2018-01-25 19:00:09 +01:00
parent 010d7876ef
commit a82bd12383
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ constexpr int NB_MAX_CONTACT_MANIFOLDS_CONCAVE_SHAPE = 3;
constexpr decimal COS_ANGLE_SIMILAR_CONTACT_MANIFOLD = decimal(0.95);
/// Size (in bytes) of the single frame allocator
constexpr size_t INIT_SINGLE_FRAME_ALLOCATOR_BYTES = 1048576; // 1Mb
constexpr std::size_t INIT_SINGLE_FRAME_ALLOCATOR_BYTES = 1048576; // 1Mb
}

View File

@ -415,7 +415,7 @@ inline void Profiler::destroy() {
#else // In profile is not active
// Empty macro in case profiling is not active
#define PROFILE(name)
#define PROFILE(name, profiler)
#endif