Title: [157410] trunk/Source/WebCore
Revision
157410
Author
[email protected]
Date
2013-10-14 11:29:37 -0700 (Mon, 14 Oct 2013)

Log Message

[Win] Build fix after r122737.

* dom/Node.h: Add explicit WebCore namespace to macro definition to work around
Visual Studio bug.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (157409 => 157410)


--- trunk/Source/WebCore/ChangeLog	2013-10-14 18:08:11 UTC (rev 157409)
+++ trunk/Source/WebCore/ChangeLog	2013-10-14 18:29:37 UTC (rev 157410)
@@ -1,3 +1,10 @@
+2013-10-14  Brent Fulgham  <[email protected]>
+
+        [Win] Build fix after r122737.
+
+        * dom/Node.h: Add explicit WebCore namespace to macro definition to work around
+        Visual Studio bug.
+
 2013-10-14  Andreas Kling  <[email protected]>
 
         Pass Document directly to anonymous renderer constructors.

Modified: trunk/Source/WebCore/dom/Node.h (157409 => 157410)


--- trunk/Source/WebCore/dom/Node.h	2013-10-14 18:08:11 UTC (rev 157409)
+++ trunk/Source/WebCore/dom/Node.h	2013-10-14 18:29:37 UTC (rev 157410)
@@ -721,22 +721,22 @@
 #define TYPE_CASTS_BASE(ToClassName, FromClassName) \
 inline const ToClassName* to##ToClassName(const FromClassName* object) \
 { \
-    ASSERT_WITH_SECURITY_IMPLICATION(!object || is##ToClassName(*object)); \
+    ASSERT_WITH_SECURITY_IMPLICATION(!object || WebCore::is##ToClassName(*object)); \
     return static_cast<const ToClassName*>(object); \
 } \
 inline ToClassName* to##ToClassName(FromClassName* object) \
 { \
-    ASSERT_WITH_SECURITY_IMPLICATION(!object || is##ToClassName(*object)); \
+    ASSERT_WITH_SECURITY_IMPLICATION(!object || WebCore::is##ToClassName(*object)); \
     return static_cast<ToClassName*>(object); \
 } \
 inline const ToClassName& to##ToClassName(const FromClassName& object) \
 { \
-    ASSERT_WITH_SECURITY_IMPLICATION(is##ToClassName(object)); \
+    ASSERT_WITH_SECURITY_IMPLICATION(WebCore::is##ToClassName(object)); \
     return static_cast<const ToClassName&>(object); \
 } \
 inline ToClassName& to##ToClassName(FromClassName& object) \
 { \
-    ASSERT_WITH_SECURITY_IMPLICATION(is##ToClassName(object)); \
+    ASSERT_WITH_SECURITY_IMPLICATION(WebCore::is##ToClassName(object)); \
     return static_cast<ToClassName&>(object); \
 } \
 void to##ToClassName(const ToClassName*); \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to