Uses Reference if compiler has no port
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@48 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
0b9d261d9b
commit
ad7e89ad22
31 changed files with 509 additions and 470 deletions
33
EmptyType.h
33
EmptyType.h
|
@ -1,25 +1,24 @@
|
|||
////////////////////////////////
|
||||
//Generated header: EmptyType.h
|
||||
//Forwards to the appropriate code
|
||||
/////////////////////////////////
|
||||
// Generated header: EmptyType.h
|
||||
// Forwards to the appropriate code
|
||||
// that works on the detected compiler
|
||||
//Generated on Sun Sep 08 18:42:42 2002
|
||||
|
||||
// Generated on Sun Sep 15 15:31:17 2002
|
||||
/////////////////////////////////
|
||||
|
||||
#ifdef LOKI_USE_REFERENCE
|
||||
# include "./Reference/EmptyType.h"
|
||||
# include "Reference/EmptyType.h"
|
||||
#else
|
||||
# if (_MSC_VER >= 1300)
|
||||
# include "./MSVC/1300/EmptyType.h"
|
||||
# elif (_MSC_VER >= 1200)
|
||||
# include "./MSVC/1200/EmptyType.h"
|
||||
# elif (__BORLANDC__)
|
||||
# include "./Borland/EmptyType.h"
|
||||
# if (__INTEL_COMPILER)
|
||||
# include "Reference/EmptyType.h"
|
||||
# elif (__MWERKS__)
|
||||
# include "./Reference/EmptyType.h"
|
||||
# elif ( (__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 95)) )
|
||||
# include "./Reference/EmptyType.h"
|
||||
# include "Reference/EmptyType.h"
|
||||
# elif (__BORLANDC__ >= 0x560)
|
||||
# include "Borland/EmptyType.h"
|
||||
# elif (_MSC_VER >= 1300)
|
||||
# include "MSVC/1300/EmptyType.h"
|
||||
# elif (_MSC_VER >= 1200)
|
||||
# include "MSVC/1200/EmptyType.h"
|
||||
# else
|
||||
//Define LOKI_USE_REFERENCE and get back to us on the results
|
||||
# error Compiler not tested with Loki, #define LOKI_USE_REFERENCE
|
||||
# include "Reference/EmptyType.h"
|
||||
# endif
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue