diff options
author | Allan Sandfeld Jensen <allan.jensen@digia.com> | 2013-09-18 18:14:04 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-09-20 17:35:28 +0200 |
commit | 49994fb2ad1dbc66d69b7d5d3418ade4dde7213f (patch) | |
tree | dfb49a134c6d9e61c3463be8e51c0d9a11d23eb3 /Source/JavaScriptCore/runtime | |
parent | 42dabaf83563a373e8796914c2aa25dc4b54cc13 (diff) | |
download | qtwebkit-49994fb2ad1dbc66d69b7d5d3418ade4dde7213f.tar.gz |
Fix build with MingW
Fix wrong export/import flags in inlined methods.
Use normal GCC inline asm instead of _ReadWriteBarrier.
Change-Id: Iba6b923be383777f2807d84349044dbe5a22eb57
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'Source/JavaScriptCore/runtime')
-rw-r--r-- | Source/JavaScriptCore/runtime/Watchdog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/Watchdog.h b/Source/JavaScriptCore/runtime/Watchdog.h index 08c0ccb95..a7b29ef7a 100644 --- a/Source/JavaScriptCore/runtime/Watchdog.h +++ b/Source/JavaScriptCore/runtime/Watchdog.h @@ -54,8 +54,8 @@ public: // This version of didFire() is a more efficient version for when we want // to know if the watchdog has fired in the past, and not whether it should // fire right now. - JS_EXPORT_PRIVATE bool didFire() { return m_didFire; } - JS_EXPORT_PRIVATE void fire(); + bool didFire() { return m_didFire; } + void fire(); void* timerDidFireAddress() { return &m_timerDidFire; } |