Changeset 144693 in webkit


Ignore:
Timestamp:
Mar 4, 2013 3:51:59 PM (11 years ago)
Author:
rakuco@webkit.org
Message:

Unreviewed build fix after r144675.

Work around picky/old C++ compilers by separating the '>>' in
nested templates with a space.

  • UIProcess/Storage/StorageManager.cpp:

(StorageManager::StorageArea):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r144691 r144693  
     12013-03-04  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
     2
     3        Unreviewed build fix after r144675.
     4
     5        Work around picky/old C++ compilers by separating the '>>' in
     6        nested templates with a space.
     7
     8        * UIProcess/Storage/StorageManager.cpp:
     9        (StorageManager::StorageArea):
     10
    1112013-03-04  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WebKit2/UIProcess/Storage/StorageManager.cpp

    r144691 r144693  
    5353    void dispatchEvents(CoreIPC::Connection*, uint64_t storageAreaID, const String& key, const String& oldValue, const String& newValue, const String& urlString) const;
    5454
    55     HashSet<std::pair<RefPtr<CoreIPC::Connection>, uint64_t>> m_eventListeners;
     55    HashSet<std::pair<RefPtr<CoreIPC::Connection>, uint64_t> > m_eventListeners;
    5656};
    5757
Note: See TracChangeset for help on using the changeset viewer.