Index: tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc |
diff --git a/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc |
index 72a10862fb218df5c2b0682c2d4e6dfb15f96221..3115f0aa3db08f5e75bce7ca7e0a626ee57a16c1 100644 |
--- a/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc |
+++ b/tools/clang/rewrite_to_chrome_style/tests/functions-expected.cc |
@@ -15,6 +15,12 @@ int TestFunctionThatTakesTwoInts(int x, int y) { |
return TestFunctionThatTakesTwoInts(x - 1, y + 1); |
} |
+// This is named like the begin() method which isn't renamed, but |
+// here it's not a method so it should be. |
+void Begin() {} |
+// Same for trace(). |
+void Trace() {} |
+ |
// Note: F is already Google style and should not change. |
void F() { |
// Test referencing a function without calling it. |