]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - include/stl_check.h
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / include / stl_check.h
index b6def1dbd91e4866f15e5819e04519d473fb782a..89660091367632dc4d7f5eb535d19eb236ac2598 100644 (file)
@@ -1,28 +1,28 @@
 /*
-Copyright (C) 1999-2007 id Software, Inc. and contributors.
-For a list of contributors, see the accompanying CONTRIBUTORS file.
+   Copyright (C) 1999-2007 id Software, Inc. and contributors.
+   For a list of contributors, see the accompanying CONTRIBUTORS file.
 
-This file is part of GtkRadiant.
+   This file is part of GtkRadiant.
 
-GtkRadiant is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+   GtkRadiant is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
 
-GtkRadiant is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+   GtkRadiant is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
-You should have received a copy of the GNU General Public License
-along with GtkRadiant; if not, write to the Free Software
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-*/
+   You should have received a copy of the GNU General Public License
+   along with GtkRadiant; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
 
 /*!
-This header is used to make sure the STL we are using is what we expect
-this allows to catch some weird errors early at compile time
-*/
+   This header is used to make sure the STL we are using is what we expect
+   this allows to catch some weird errors early at compile time
+ */
 
 #ifdef Q_NO_STLPORT
 
@@ -35,21 +35,21 @@ using namespace std;
 #error "Can't find _STLPORT_VERSION, check you are compiling against STLPort"
 #endif
 
-#if !defined(_STLP_DONT_USE_EXCEPTIONS)
+#if !defined( _STLP_DONT_USE_EXCEPTIONS )
 #error exc
 #endif
 
-#if !defined(_STLP_NO_NAMESPACES)
+#if !defined( _STLP_NO_NAMESPACES )
 #error namespace
 #endif
 
-#if !defined(_STLP_NO_IOSTREAMS)
+#if !defined( _STLP_NO_IOSTREAMS )
 #error io
 #endif
 
 // now check a few more things (paranoid)
 // if you use our custom STLPort distribution it should be alright though
-#if !defined(_STLP_DONT_USE_EXCEPTIONS) || !defined(_STLP_NO_NAMESPACES) || !defined(_STLP_NO_IOSTREAMS)
+#if !defined( _STLP_DONT_USE_EXCEPTIONS ) || !defined( _STLP_NO_NAMESPACES ) || !defined( _STLP_NO_IOSTREAMS )
 #error "There is something broken in your STLPort config"
 #endif