[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
eric at webkit.org
eric at webkit.org
Wed Jan 6 00:18:14 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 290f1112b936d4025c8475940faac7606807e457
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