blob: 73e65b74649df4ef72a4c5a6074fa8e4a5334312 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// tolua++.h
// Redirection file, needed because ToLua++ generates the Bindings.cpp file with >> #include "tolua++.h" <<
// Only used from Bindings.cpp
#include "tolua++/include/tolua++.h"
#ifdef _MSC_VER
// Disable specific warnings for the generated Bindings.cpp file:
#pragma warning(disable: 4800) // 'int' : forcing value to bool 'true' or 'false' (performance warning)
#endif // _MSC_VER
|