1
0
Fork 0

inject TestGlobals.h correctly

This commit is contained in:
Tycho 2014-05-24 14:09:51 +01:00
parent 7fac63cffb
commit 944d29c0ae
3 changed files with 10 additions and 5 deletions

View File

@ -1,5 +1,9 @@
#ifdef TEST_GLOBALS
#include "TestGlobals.h"
#else
#include "Globals.h"
#endif
#include "ChunkData.h"
cChunkData::cChunkData()
@ -39,7 +43,7 @@ cChunkData::~cChunkData()
other.IsOwner = false;
}
cChunkData::cChunkData& operator=(const cChunkData& other)
cChunkData& cChunkData::operator=(const cChunkData& other)
{
if (&other != this)
{
@ -71,7 +75,7 @@ cChunkData::~cChunkData()
}
}
cChunkData::cChunkData& operator=(cChunkData&& other)
cChunkData& cChunkData::operator=(cChunkData&& other)
{
if (&other != this)
{
@ -230,7 +234,7 @@ NIBBLETYPE cChunkData::GetSkyLight(int a_RelX, int a_RelY, int a_RelZ) const
return 0;
}
cChunkData cChunkData::cChunkData::Copy() const
cChunkData cChunkData::Copy() const
{
cChunkData copy;
for (size_t i = 0; i < CHUNK_SECTION_COUNT; i++)

View File

@ -4,6 +4,7 @@ enable_testing()
include_directories(${CMAKE_SOURCE_DIR}/src/)
add_definitions(-DTEST_GLOBALS=1)
add_library(ChunkBuffer ${CMAKE_SOURCE_DIR}/src/ChunkData.cpp)

View File

@ -126,9 +126,9 @@ class cAssertFailure
#define UNUSED(X) (void)(X)
// Logging functions
void LOGERROR(const char* a_Format, ...) FORMATSTRING(1,2);
void inline LOGERROR(const char* a_Format, ...) FORMATSTRING(1,2);
void LOGERROR(const char* a_Format, ...)
void inline LOGERROR(const char* a_Format, ...)
{
va_list argList;
va_start(argList, a_Format);