Index: tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc |
diff --git a/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc |
index e6b233babee959fa6ea443f9eb25862c0953de0d..1136d2ff24783bab9405c0b052e39dfa165fd209 100644 |
--- a/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc |
+++ b/tools/clang/rewrite_to_chrome_style/tests/constants-expected.cc |
@@ -17,11 +17,11 @@ const float kPi = 3.141592654; |
class C { |
public: |
// Static class constants. |
- static const int kUsefulConstant_ = 8; |
+ static const int kUsefulConstant = 8; |
// Note: s_ prefix should not be retained. |
- static const int kStaticConstant_ = 9; |
+ static const int kStaticConstant = 9; |
// Note: m_ prefix should not be retained even though the proper prefix is s_. |
- static const int kSuperNumber_ = 42; |
+ static const int kSuperNumber = 42; |
// Not a constant even though it has static storage duration. |
static const char* current_event_; |