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:
syntheticpp 2005-09-16 14:03:07 +00:00
parent c4b47312e0
commit 37abc6b09b
2 changed files with 13 additions and 2 deletions

View file

@ -155,6 +155,10 @@ private:
bool singletonTest;
} singletonTest;
#ifdef LOKI_NONCC
#include "../../include/noncc/loki/Singleton.cpp"
#else
#include "../../src/Singleton.cpp"
#endif
#endif

View file

@ -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