]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - include/stl_check.h
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / include / stl_check.h
1 /*
2    Copyright (C) 1999-2007 id Software, Inc. and contributors.
3    For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 /*!
23    This header is used to make sure the STL we are using is what we expect
24    this allows to catch some weird errors early at compile time
25  */
26
27 #ifdef Q_NO_STLPORT
28
29 // not using STLPort (gcc 3.x build)
30 using namespace std;
31
32 #else
33
34 #ifndef _STLPORT_VERSION
35 #error "Can't find _STLPORT_VERSION, check you are compiling against STLPort"
36 #endif
37
38 #if !defined( _STLP_DONT_USE_EXCEPTIONS )
39 #error exc
40 #endif
41
42 #if !defined( _STLP_NO_NAMESPACES )
43 #error namespace
44 #endif
45
46 #if !defined( _STLP_NO_IOSTREAMS )
47 #error io
48 #endif
49
50 // now check a few more things (paranoid)
51 // if you use our custom STLPort distribution it should be alright though
52 #if !defined( _STLP_DONT_USE_EXCEPTIONS ) || !defined( _STLP_NO_NAMESPACES ) || !defined( _STLP_NO_IOSTREAMS )
53 #error "There is something broken in your STLPort config"
54 #endif
55
56 #ifdef _WIN32
57 #pragma warning(disable : 4786)
58 #endif
59
60 #endif