Fix compilation with namespaced builds
authorBradley T. Hughes <bradley.hughes@nokia.com>
Fri, 29 Jul 2011 10:26:43 +0000 (12:26 +0200)
committerQt by Nokia <qt-info@nokia.com>
Fri, 29 Jul 2011 10:49:12 +0000 (12:49 +0200)
Add QT_BEGIN_NAMESPACE and QT_END_NAMESPACE to src/corelib/tools/qfreelist.cpp

Change-Id: Ie01e74a3c2d9cd4de1f52a546d13398e1409c86b
Reviewed-on: http://codereview.qt.nokia.com/2390
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Olivier Goffart <olivier.goffart@nokia.com>
Reviewed-by: João Abecasis <joao.abecasis@nokia.com>
src/corelib/tools/qfreelist.cpp

index 63e37ec..bbbdb25 100644 (file)
@@ -41,6 +41,8 @@
 
 #include "qfreelist_p.h"
 
+QT_BEGIN_NAMESPACE
+
 // default sizes and offsets (no need to define these when customizing)
 enum {
     Offset0 = 0x00000000,
@@ -60,3 +62,6 @@ const int QFreeListDefaultConstants::Sizes[QFreeListDefaultConstants::BlockCount
     Size2,
     Size3
 };
+
+QT_END_NAMESPACE
+