Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Side by Side Diff: tools/clang/rewrite_to_chrome_style/tests/template-original.cc

Issue 1645243002: rewrite_to_chrome_style: Avoid asserts when checking for const-ness. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/clang/rewrite_to_chrome_style/tests/template-expected.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 namespace blink {
6
7 template <typename T, int number>
8 void F() {
9 // We don't assert on this, and we don't end up considering it a const for
10 // now.
11 const int maybe_a_const = sizeof(T);
12 const int is_a_const = number;
13 }
14
15 template <int number, typename... T>
16 void F() {
17 // We don't assert on this, and we don't end up considering it a const for
18 // now.
19 const int maybe_a_const = sizeof...(T);
20 const int is_a_const = number;
21 }
22
23 } // namespace blink
OLDNEW
« no previous file with comments | « tools/clang/rewrite_to_chrome_style/tests/template-expected.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698