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;
|
||||
} singletonTest;
|
||||
|
||||
#ifdef LOKI_NONCC
|
||||
#include "../../include/noncc/loki/Singleton.cpp"
|
||||
#else
|
||||
#include "../../src/Singleton.cpp"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -162,7 +162,14 @@ private:
|
|||
} smallObjectTest;
|
||||
|
||||
#ifndef SMALLOBJ_CPP
|
||||
# define SMALLOBJ_CPP
|
||||
# include "../../include/noncc/loki/SmallObj.cpp"
|
||||
# define SMALLOBJ_CPP
|
||||
# ifdef LOKI_NONCC
|
||||
# include "../../include/noncc/loki/SmallObj.cpp"
|
||||
# else
|
||||
# include "../../src/SmallObj.cpp"
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue