OLD | NEW |
(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 |
OLD | NEW |