Changeset 85169 in webkit


Ignore:
Timestamp:
Apr 27, 2011 11:56:36 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-04-27 Adam Barth <abarth@webkit.org>

Reviewed by Maciej Stachowiak.

Fix OwnPtr issues in IndexedDB
https://bugs.webkit.org/show_bug.cgi?id=59656

This patch is an attempt to fix the clang build. Clang can't seem to
cope with OwnPtrs to classes declared in an anonymous namespace because
OwnPtr's copy constructor isn't defined (but would need to be defined
in this translation unit).

  • platform/leveldb/LevelDBDatabase.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r85168 r85169  
     12011-04-27  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Fix OwnPtr issues in IndexedDB
     6        https://bugs.webkit.org/show_bug.cgi?id=59656
     7
     8        This patch is an attempt to fix the clang build.  Clang can't seem to
     9        cope with OwnPtrs to classes declared in an anonymous namespace because
     10        OwnPtr's copy constructor isn't defined (but would need to be defined
     11        in this translation unit).
     12
     13        * platform/leveldb/LevelDBDatabase.cpp:
     14
    1152011-04-27  Ryuan Choi  <ryuan.choi@samsung.com>
    216
  • trunk/Source/WebCore/platform/leveldb/LevelDBDatabase.cpp

    r85122 r85169  
    6464}
    6565
    66 namespace {
    6766class ComparatorAdapter : public leveldb::Comparator {
    6867public:
     
    8685    const LevelDBComparator* m_comparator;
    8786};
    88 }
    8987
    9088LevelDBDatabase::LevelDBDatabase()
Note: See TracChangeset for help on using the changeset viewer.