| Index: Source/wtf/ListHashSetTest.cpp
|
| diff --git a/Source/wtf/ListHashSetTest.cpp b/Source/wtf/ListHashSetTest.cpp
|
| index a980de357a9d6c433171229777ef980a9a98bdc4..f5c008950be643a626c93cbaa93967d3587c2a78 100644
|
| --- a/Source/wtf/ListHashSetTest.cpp
|
| +++ b/Source/wtf/ListHashSetTest.cpp
|
| @@ -32,6 +32,8 @@
|
| #include "wtf/RefPtr.h"
|
| #include <gtest/gtest.h>
|
|
|
| +namespace WTF {
|
| +
|
| namespace {
|
|
|
| template<typename Set>
|
| @@ -244,7 +246,7 @@ TEST(LinkedHashSetTest, PrependOrMoveToLastWithDuplicates)
|
| prependOrMoveToLastWithDuplicates<LinkedHashSet<int>>();
|
| }
|
|
|
| -class DummyRefCounted: public WTF::RefCounted<DummyRefCounted> {
|
| +class DummyRefCounted : public RefCounted<DummyRefCounted> {
|
| public:
|
| DummyRefCounted(bool& isDeleted) : m_isDeleted(isDeleted) { m_isDeleted = false; }
|
| ~DummyRefCounted() { m_isDeleted = true; }
|
| @@ -718,4 +720,6 @@ TEST(LinkedHashSetTest, Swap)
|
| swapTestHelper<LinkedHashSet<int>>();
|
| }
|
|
|
| -} // namespace
|
| +} // anonymous namespace
|
| +
|
| +} // namespace WTF
|
|
|