You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use std::array<> instead [cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays]
128
+
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use 'std::array' instead [cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays]
129
129
130
130
int array2[10]; // NOLINT(cppcoreguidelines-avoid-c-arrays)
131
-
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use std::array<> instead [modernize-avoid-c-arrays]
131
+
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use 'std::array' instead [modernize-avoid-c-arrays]
132
132
133
133
int array3[10]; // NOLINT(cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays)
Copy file name to clipboardexpand all lines: clang-tools-extra/test/clang-tidy/infrastructure/nolintbeginend.cpp
+2-2
Original file line number
Diff line number
Diff line change
@@ -133,11 +133,11 @@ class C16 { C16(int x); };
133
133
// NOLINTEND(*,-google*)
134
134
135
135
int array1[10];
136
-
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use std::array<> instead [cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays]
136
+
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use 'std::array' instead [cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays]
137
137
138
138
// NOLINTBEGIN(cppcoreguidelines-avoid-c-arrays)
139
139
int array2[10];
140
-
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use std::array<> instead [modernize-avoid-c-arrays]
140
+
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use 'std::array' instead [modernize-avoid-c-arrays]
Copy file name to clipboardexpand all lines: clang-tools-extra/test/clang-tidy/infrastructure/nolintnextline.cpp
+2-2
Original file line number
Diff line number
Diff line change
@@ -70,11 +70,11 @@ class I5 { I5(int x); };
70
70
classI6 { I6(int x); };
71
71
72
72
int array1[10];
73
-
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use std::array<> instead [cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays]
73
+
// CHECK-MESSAGES: :[[@LINE-1]]:1: warning: do not declare C-style arrays, use 'std::array' instead [cppcoreguidelines-avoid-c-arrays,modernize-avoid-c-arrays]
0 commit comments