1auto_raw_pointer.cpp:28: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:29: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:30: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:35: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:36: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:37: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:44: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:45: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:52: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:54: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:55: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:56: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:57: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 53auto_raw_pointer.cpp:59:3: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. 54 static auto static_ptr = new int; 55 ^~~~~~~~~~~ 56 static auto* 57auto_raw_pointer.cpp:62:8: warning: [chromium-style] auto variable type must not deduce to a raw pointer type. 58 for (auto& it : iteratable) 59 ^~~~~ 60 auto* const 6115 warnings generated. 62