Title: [141442] trunk/Source/WebKit2
Revision
141442
Author
[email protected]
Date
2013-01-31 10:54:33 -0800 (Thu, 31 Jan 2013)

Log Message

Unreviewed trivial build fix: Pre C++11 the use of
>> in nested templates is ambiguous in the grammar and
requires the insertion of a space here. Since these files are
not Mac specific we don't require C++11 yet and a space
fixes the build.

* Platform/CoreIPC/Connection.h:
(Connection):
* Shared/ChildProcessProxy.h:
(ChildProcessProxy):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (141441 => 141442)


--- trunk/Source/WebKit2/ChangeLog	2013-01-31 18:50:06 UTC (rev 141441)
+++ trunk/Source/WebKit2/ChangeLog	2013-01-31 18:54:33 UTC (rev 141442)
@@ -1,3 +1,16 @@
+2013-01-31  Simon Hausmann  <[email protected]>
+
+        Unreviewed trivial build fix: Pre C++11 the use of
+        >> in nested templates is ambiguous in the grammar and
+        requires the insertion of a space here. Since these files are
+        not Mac specific we don't require C++11 yet and a space
+        fixes the build.
+
+        * Platform/CoreIPC/Connection.h:
+        (Connection):
+        * Shared/ChildProcessProxy.h:
+        (ChildProcessProxy):
+
 2013-01-31  Christophe Dumez  <[email protected]>
 
         [EFL] Disable Web Intents

Modified: trunk/Source/WebKit2/Platform/CoreIPC/Connection.h (141441 => 141442)


--- trunk/Source/WebKit2/Platform/CoreIPC/Connection.h	2013-01-31 18:50:06 UTC (rev 141441)
+++ trunk/Source/WebKit2/Platform/CoreIPC/Connection.h	2013-01-31 18:54:33 UTC (rev 141442)
@@ -288,7 +288,7 @@
 
     // Outgoing messages.
     Mutex m_outgoingMessagesLock;
-    Deque<OwnPtr<MessageEncoder>> m_outgoingMessages;
+    Deque<OwnPtr<MessageEncoder> > m_outgoingMessages;
     
     ThreadCondition m_waitForMessageCondition;
     Mutex m_waitForMessageMutex;

Modified: trunk/Source/WebKit2/Shared/ChildProcessProxy.h (141441 => 141442)


--- trunk/Source/WebKit2/Shared/ChildProcessProxy.h	2013-01-31 18:50:06 UTC (rev 141441)
+++ trunk/Source/WebKit2/Shared/ChildProcessProxy.h	2013-01-31 18:54:33 UTC (rev 141442)
@@ -70,7 +70,7 @@
 
     bool sendMessage(PassOwnPtr<CoreIPC::MessageEncoder>, unsigned messageSendFlags);
 
-    Vector<std::pair<OwnPtr<CoreIPC::MessageEncoder>, unsigned>> m_pendingMessages;
+    Vector<std::pair<OwnPtr<CoreIPC::MessageEncoder>, unsigned> > m_pendingMessages;
     RefPtr<ProcessLauncher> m_processLauncher;
     RefPtr<CoreIPC::Connection> m_connection;
     CoreIPC::Connection::QueueClient* m_queueClient;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to