| 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 8d064a1816cfc8a15efd8c48d8507161c109141f..402ae44b85e48f7717ab47af9ca509f125be64a3 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
|
| @@ -36,7 +36,7 @@ class Checked {
|
| };
|
|
|
| template <typename To, typename From>
|
| -To Bitwise_cast(From from) {
|
| +To bitwise_cast(From from) {
|
| static_assert(sizeof(To) == sizeof(From), "msg");
|
| return reinterpret_cast<To>(from);
|
| }
|
| @@ -60,5 +60,5 @@ struct ArrayTraits<WTF::Checked<U, int>> {
|
|
|
| } // namespace mojo
|
|
|
| -using WTF::Bitwise_cast;
|
| +using WTF::bitwise_cast;
|
| using WTF::SafeCast;
|
|
|