Index: tools/clang/rewrite_to_chrome_style/tests/function-templates-expected.cc |
diff --git a/tools/clang/rewrite_to_chrome_style/tests/function-templates-expected.cc b/tools/clang/rewrite_to_chrome_style/tests/function-templates-expected.cc |
index 69a3349583038f79f237f6503c2bb9ef57f78056..b295c971dfbd5c2a6169c0e229a5e40a8a132410 100644 |
--- a/tools/clang/rewrite_to_chrome_style/tests/function-templates-expected.cc |
+++ b/tools/clang/rewrite_to_chrome_style/tests/function-templates-expected.cc |
@@ -21,14 +21,11 @@ class Checked { |
public: |
template <typename U, typename V> |
Checked(const Checked<U, V>& rhs) { |
- // This (incorrectly) doesn't get rewritten, since it's not instantiated. In |
- // this case, the AST representation contains a bunch of |
- // CXXDependentScopeMemberExpr nodes. |
- if (rhs.hasOverflowed()) |
- this->overflowed(); |
- if (!IsInBounds<T>(rhs.m_value)) |
- this->overflowed(); |
- value_ = static_cast<T>(rhs.m_value); |
+ if (rhs.HasOverflowed()) |
+ this->Overflowed(); |
+ if (!IsInBounds<T>(rhs.value_)) |
+ this->Overflowed(); |
+ value_ = static_cast<T>(rhs.value_); |
} |
bool HasOverflowed() const { return false; } |
@@ -40,7 +37,7 @@ class Checked { |
template <typename To, typename From> |
To Bitwise_cast(From from) { |
- static_assert(sizeof(To) == sizeof(From)); |
+ static_assert(sizeof(To) == sizeof(From), "msg"); |
return reinterpret_cast<To>(from); |
} |