| Index: Source/bindings/core/v8/ToV8Test.cpp
|
| diff --git a/Source/bindings/core/v8/ToV8Test.cpp b/Source/bindings/core/v8/ToV8Test.cpp
|
| index 7b6765afde01e3286e119771e69b9cbd974006d8..77b5e5465f01cf9fcf8c310ca91c07a05bc93803 100644
|
| --- a/Source/bindings/core/v8/ToV8Test.cpp
|
| +++ b/Source/bindings/core/v8/ToV8Test.cpp
|
| @@ -168,7 +168,7 @@ TEST_F(ToV8Test, scriptValue)
|
|
|
| TEST_F(ToV8Test, vector)
|
| {
|
| - Vector<RefPtr<RefCountedScriptWrappable> > v;
|
| + Vector<RefPtr<RefCountedScriptWrappable>> v;
|
| v.append(RefCountedScriptWrappable::create("foo"));
|
| v.append(RefCountedScriptWrappable::create("bar"));
|
|
|
| @@ -229,7 +229,7 @@ TEST_F(ToV8Test, basicTypeVectors)
|
|
|
| TEST_F(ToV8Test, heapVector)
|
| {
|
| - HeapVector<Member<GarbageCollectedScriptWrappable> > v;
|
| + HeapVector<Member<GarbageCollectedScriptWrappable>> v;
|
| v.append(new GarbageCollectedScriptWrappable("hoge"));
|
| v.append(new GarbageCollectedScriptWrappable("fuga"));
|
| v.append(nullptr);
|
|
|