include src files directly
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@245 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
c4b47312e0
commit
37abc6b09b
2 changed files with 13 additions and 2 deletions
|
@ -155,6 +155,10 @@ private:
|
||||||
bool singletonTest;
|
bool singletonTest;
|
||||||
} singletonTest;
|
} singletonTest;
|
||||||
|
|
||||||
|
#ifdef LOKI_NONCC
|
||||||
#include "../../include/noncc/loki/Singleton.cpp"
|
#include "../../include/noncc/loki/Singleton.cpp"
|
||||||
|
#else
|
||||||
|
#include "../../src/Singleton.cpp"
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -162,7 +162,14 @@ private:
|
||||||
} smallObjectTest;
|
} smallObjectTest;
|
||||||
|
|
||||||
#ifndef SMALLOBJ_CPP
|
#ifndef SMALLOBJ_CPP
|
||||||
# define SMALLOBJ_CPP
|
# define SMALLOBJ_CPP
|
||||||
# include "../../include/noncc/loki/SmallObj.cpp"
|
# ifdef LOKI_NONCC
|
||||||
|
# include "../../include/noncc/loki/SmallObj.cpp"
|
||||||
|
# else
|
||||||
|
# include "../../src/SmallObj.cpp"
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue