[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:53:34 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 98778c66e7e4bc8b1dd754dc07538ab11d7bc27f
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 4 17:06:30 2010 +0000

    2010-01-04  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Adam Roben.
    
            Implement NO_RETURN for COMPILER(MSVC).
            https://bugs.webkit.org/show_bug.cgi?id=33056
    
            * wtf/AlwaysInline.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52741 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 5d507e0..43b14a5 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-01-04  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Adam Roben.
+
+        Implement NO_RETURN for COMPILER(MSVC).
+        https://bugs.webkit.org/show_bug.cgi?id=33056
+
+        * wtf/AlwaysInline.h:
+
 2010-01-04  Maciej Stachowiak  <mjs at apple.com>
 
         Reviewed by Simon Hausmann.
diff --git a/JavaScriptCore/wtf/AlwaysInline.h b/JavaScriptCore/wtf/AlwaysInline.h
index 4e7224c..e5edb6d 100644
--- a/JavaScriptCore/wtf/AlwaysInline.h
+++ b/JavaScriptCore/wtf/AlwaysInline.h
@@ -57,6 +57,8 @@
 #ifndef NO_RETURN
 #if COMPILER(GCC)
 #define NO_RETURN __attribute((__noreturn__))
+#elif COMPILER(MSVC)
+#define NO_RETURN __declspec(noreturn)
 #else
 #define NO_RETURN
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list