We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41adf62 commit 420d7d0Copy full SHA for 420d7d0
clang/include/clang/Basic/DiagnosticSemaKinds.td
@@ -50,6 +50,11 @@ def note_replace_abs_function : Note<"use function '%0' instead">;
50
def warn_pointer_abs : Warning<
51
"taking the absolute value of %select{pointer|function|array}0 type %1 is suspicious">,
52
InGroup<AbsoluteValue>;
53
+
54
+def err_invalid_lambda_capture_initializer_type : Error<
55
+ "invalid initializer type for lambda capture">;
56
+def err_expected_identifier_for_lambda_capture : Error<
57
+ "expected identifier for lambda capture">;
58
59
def warn_max_unsigned_zero : Warning<
60
"taking the max of "
0 commit comments