Added a config.h compiler define in, to handle incompatibilities across
platforms.
This commit is contained in:
parent
fc71293c67
commit
b7e616a2a2
1 changed files with 4 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
#include <vector>
|
||||
#include "stringUtils.h"
|
||||
#include "config.h"
|
||||
|
||||
/**
|
||||
* Template for classes to hold pointers to objects. The Cabinet<M>
|
||||
|
|
@ -202,6 +203,8 @@ private:
|
|||
/*!
|
||||
* The actual storage will be allocated in .cpp files
|
||||
*/
|
||||
template<class M> Cabinet<M>* Cabinet<M>::__storage;
|
||||
#ifdef NEEDS_GENERIC_TEMPL_STATIC_DECL
|
||||
template<class M> Cabinet<M>* Cabinet<M>::__storage;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue