• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1auto_raw_pointer.cpp:20:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
2  auto raw_int_ptr = &integer;
3  ^~~~
4  auto*
5auto_raw_pointer.cpp:21:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
6  const auto const_raw_int_ptr = &integer;
7  ^~~~~~~~~~
8  auto* const
9auto_raw_pointer.cpp:22:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
10  const auto& const_raw_int_ptr_ref = &integer;
11  ^~~~~~~~~~~
12  auto* const
13auto_raw_pointer.cpp:27:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
14  auto raw_foo_ptr = &foo;
15  ^~~~
16  auto*
17auto_raw_pointer.cpp:28:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
18  const auto const_raw_foo_ptr = &foo;
19  ^~~~~~~~~~
20  auto* const
21auto_raw_pointer.cpp:29:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
22  const auto& const_raw_foo_ptr_ref = &foo;
23  ^~~~~~~~~~~
24  auto* const
25auto_raw_pointer.cpp:36:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
26  auto double_ptr_auto = &int_ptr;
27  ^~~~
28  auto**
29auto_raw_pointer.cpp:37:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
30  auto* double_ptr_auto_ptr = &int_ptr;
31  ^~~~~
32  auto**
33auto_raw_pointer.cpp:44:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
34  auto auto_awesome = pointer_awesomeness;
35  ^~~~
36  auto* const* const volatile** const*
37auto_raw_pointer.cpp:46:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
38  auto& int_ptr_ref = int_ptr;
39  ^~~~~
40  auto*&
41auto_raw_pointer.cpp:47:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
42  const auto& const_int_ptr_ref = int_ptr;
43  ^~~~~~~~~~~
44  auto* const
45auto_raw_pointer.cpp:48:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
46  auto&& int_ptr_rref = static_cast<int*&&>(int_ptr);
47  ^~~~~~
48  auto*&&
49auto_raw_pointer.cpp:49:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type.
50  const auto&& const_int_ptr_rref = static_cast<int*&&>(int_ptr);
51  ^~~~~~~~~~~~
52  auto* const
5313 warnings generated.
54