Index: tools/clang/rewrite_to_chrome_style/tests/function-templates-original.cc |
diff --git a/tools/clang/rewrite_to_chrome_style/tests/function-templates-original.cc b/tools/clang/rewrite_to_chrome_style/tests/function-templates-original.cc |
index 71267b0a88dfef0eae7bd3fdc4ca6e59dd5a4cb1..0e8da209e00cdd14ef413de44b1b1f8466d5a73f 100644 |
--- a/tools/clang/rewrite_to_chrome_style/tests/function-templates-original.cc |
+++ b/tools/clang/rewrite_to_chrome_style/tests/function-templates-original.cc |
@@ -21,9 +21,6 @@ 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)) |
@@ -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); |
} |