Title: [123982] trunk/Source/WTF
Revision
123982
Author
[email protected]
Date
2012-07-29 14:02:59 -0700 (Sun, 29 Jul 2012)

Log Message

[WIN] Add missing export macro to friend decleration.

Since the __declspec is part of the function signature
on windows, we need it at all friend declerations too.

* wtf/MediaTime.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (123981 => 123982)


--- trunk/Source/WTF/ChangeLog	2012-07-29 21:02:18 UTC (rev 123981)
+++ trunk/Source/WTF/ChangeLog	2012-07-29 21:02:59 UTC (rev 123982)
@@ -1,5 +1,14 @@
 2012-07-28  Patrick Gansterer  <[email protected]>
 
+        [WIN] Add missing export macro to friend decleration.
+
+        Since the __declspec is part of the function signature
+        on windows, we need it at all friend declerations too.
+
+        * wtf/MediaTime.h:
+
+2012-07-28  Patrick Gansterer  <[email protected]>
+
         [CMake] Add missing MediaTime files after r123878.
 
         * wtf/CMakeLists.txt:

Modified: trunk/Source/WTF/wtf/MediaTime.h (123981 => 123982)


--- trunk/Source/WTF/wtf/MediaTime.h	2012-07-29 21:02:18 UTC (rev 123981)
+++ trunk/Source/WTF/wtf/MediaTime.h	2012-07-29 21:02:59 UTC (rev 123982)
@@ -87,7 +87,7 @@
     const int64_t& timeValue() const { return m_timeValue; }
     const int32_t& timeScale() const { return m_timeScale; }
 
-    friend MediaTime abs(const MediaTime& rhs);
+    friend WTF_EXPORT_PRIVATE MediaTime abs(const MediaTime& rhs);
 private:
     static const int32_t DefaultTimeScale = 6000;
     static const int32_t MaximumTimeScale;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to