summaryrefslogtreecommitdiff
path: root/glib/glibmm/error.cc
diff options
context:
space:
mode:
authorDaniel Elstner <daniel.kitta@gmail.com>2009-08-16 18:58:58 +0200
committerDaniel Elstner <daniel.kitta@gmail.com>2009-08-16 19:00:35 +0200
commit4f880f5d85c7e855f0430bb640db54dae9cc7e07 (patch)
tree3b3615167bad96fbd5a6e3c9dee15e49f7ebdae7 /glib/glibmm/error.cc
parent164df297d1b57f9fb1e717ca29c1944a964e85c6 (diff)
downloadglibmm-4f880f5d85c7e855f0430bb640db54dae9cc7e07.tar.gz
Get rid of all uses of GLIBMM_USING_STD()
* glib/src/*.{ccg,hg}: Remove all uses of GLIBMM_USING_STD(). We definitely do not need this anymore, and probably never did. We never covered all symbols from namespace std anyway and never got any complaint about it. Also, be careful to always include the glibmmconfig.h header when it is needed. * glib/glibmm/*.{cc,h}: ditto. * glib/glibmmconfig.h.in: Clean up and re-indent.
Diffstat (limited to 'glib/glibmm/error.cc')
-rw-r--r--glib/glibmm/error.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/glib/glibmm/error.cc b/glib/glibmm/error.cc
index eaa8eaeb..df5441b4 100644
--- a/glib/glibmm/error.cc
+++ b/glib/glibmm/error.cc
@@ -1,5 +1,4 @@
// -*- c++ -*-
-/* $Id$ */
/* error.cc
*
@@ -20,16 +19,11 @@
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-//#include <glib/gtestutils.h> //For g_assert() in glib >= 2.15.0
-//#include <glib/gmessages.h> //For g_assert() in glib < 2.15.0
-#include <glib.h> //For g_assert() in all versions of glib.
-
-#include <map>
#include <glibmmconfig.h>
#include <glibmm/error.h>
#include <glibmm/wrap_init.h>
-
-GLIBMM_USING_STD(map)
+#include <glib.h>
+#include <map>
namespace
{