summaryrefslogtreecommitdiffstats
path: root/tools/v4/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/v4/main.cpp')
-rw-r--r--tools/v4/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/v4/main.cpp b/tools/v4/main.cpp
index 0d215b9e..25ebc5c5 100644
--- a/tools/v4/main.cpp
+++ b/tools/v4/main.cpp
@@ -72,7 +72,7 @@ namespace builtins {
using namespace QQmlJS::VM;
-struct Q_V4_EXPORT Print: FunctionObject
+struct Print: FunctionObject
{
Print(ExecutionContext *scope): FunctionObject(scope) {
name = scope->engine->newString("print");
@@ -91,7 +91,7 @@ struct Q_V4_EXPORT Print: FunctionObject
}
};
-struct Q_V4_EXPORT TestHarnessError: FunctionObject
+struct TestHarnessError: FunctionObject
{
TestHarnessError(ExecutionContext *scope, bool &errorInTestHarness): FunctionObject(scope), errorOccurred(errorInTestHarness) {
name = scope->engine->newString("$ERROR");
@@ -114,7 +114,7 @@ struct Q_V4_EXPORT TestHarnessError: FunctionObject
bool &errorOccurred;
};
-struct Q_V4_EXPORT GC: public FunctionObject
+struct GC: public FunctionObject
{
GC(ExecutionContext* scope)
: FunctionObject(scope)