Prospective build fix for namespaced Qt builds
authorSimon Hausmann <simon.hausmann@digia.com>
Sun, 18 Aug 2013 13:35:02 +0000 (15:35 +0200)
committerLars Knoll <lars.knoll@digia.com>
Sun, 18 Aug 2013 18:01:26 +0000 (20:01 +0200)
Add missing QT_BEGIN/END_NAMESPACE

Change-Id: I6beed22d8d1713be99de114ba747cf5e17223591
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
src/qml/compiler/qv4compileddata.cpp

index 0bf7657..1ecb7f9 100644 (file)
@@ -47,6 +47,8 @@
 #include <private/qv4regexpobject_p.h>
 #include <private/qv4unwindhelper_p.h>
 
+QT_BEGIN_NAMESPACE
+
 namespace QV4 {
 
 namespace CompiledData {
@@ -151,3 +153,5 @@ void CompilationUnit::markObjects()
 }
 
 }
+
+QT_END_NAMESPACE