GCC won't allow "IMPORT" on the definition of a function, in this case an inline function - added to bug 2962 GCC_SURGE
authorWilliam Roberts <williamr@symbian.org>
Fri, 23 Jul 2010 12:08:17 +0100
branchGCC_SURGE
changeset 89 184e728497f3
parent 88 cb5ac135d1df
GCC won't allow "IMPORT" on the definition of a function, in this case an inline function - added to bug 2962 The error message is "function 'void KJS::DebuggerImp::abort()' definition is marked dllimport"
webengine/osswebengine/JavaScriptCore/kjs/internal.h
--- a/webengine/osswebengine/JavaScriptCore/kjs/internal.h	Thu Jul 22 16:44:19 2010 +0100
+++ b/webengine/osswebengine/JavaScriptCore/kjs/internal.h	Fri Jul 23 12:08:17 2010 +0100
@@ -135,7 +135,7 @@
       isAborted = false;
     }
 
-IMPORT    void abort() { isAborted = true; }
+    void abort() { isAborted = true; }
     bool aborted() const { return isAborted; }
 
     AttachedInterpreter *interps;