| Index: tools/clang/plugins/tests/overridden_methods.cpp
|
| diff --git a/tools/clang/plugins/tests/overridden_methods.cpp b/tools/clang/plugins/tests/overridden_methods.cpp
|
| index 8b0340c1f33ab1178da48d1168294d2d12733091..e5ab0cabdad7076239ad382399ffb97b8626c7d6 100644
|
| --- a/tools/clang/plugins/tests/overridden_methods.cpp
|
| +++ b/tools/clang/plugins/tests/overridden_methods.cpp
|
| @@ -24,9 +24,9 @@ class ImplementationDerivedClass : public ImplementationInterimClass,
|
| virtual void SomeMethod();
|
| // Should not warn if marked as override.
|
| void SomeOtherMethod() override;
|
| - // Should not warn for inline implementations in implementation files.
|
| + // Should warn for inline implementations in implementation files.
|
| virtual void SomeInlineMethod() {}
|
| - // Should not warn if overriding a method whose origin is blink.
|
| + // Should warn if overriding a method whose origin is blink.
|
| virtual void WebKitModifiedSomething();
|
| // Should warn with the insertion point after the const.
|
| virtual void SomeConstMethod() const {}
|
|
|