Skip to content

Commit 6d49a3d

Browse files
committed
[Clang][P1061] Improve error message wording
1 parent 8cf8205 commit 6d49a3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/Basic/DiagnosticParseKinds.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1100,9 +1100,9 @@ def err_lambda_capture_misplaced_ellipsis : Error<
11001100
def err_lambda_capture_multiple_ellipses : Error<
11011101
"multiple ellipses in pack capture">;
11021102
def err_binding_multiple_ellipses : Error<
1103-
"multiple ellipses in structured binding declaration">;
1103+
"multiple packs in structured binding declaration">;
11041104
def note_previous_ellipsis : Note<
1105-
"previous ellipsis specified here">;
1105+
"previous binding pack specified here">;
11061106
def ext_cxx_binding_pack : ExtWarn<
11071107
"structured binding pack is incompatible with C++ standards before C++2c">,
11081108
InGroup<CXX26>;

0 commit comments

Comments
 (0)