[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / bugprone / argument-comment.rst
blobab7e668b971c056e31efed4003ca813ad378aad0
1 .. title:: clang-tidy - bugprone-argument-comment
3 bugprone-argument-comment
4 =========================
6 Checks that argument comments match parameter names.
8 The check understands argument comments in the form ``/*parameter_name=*/``
9 that are placed right before the argument.
11 .. code-block:: c++
13   void f(bool foo);
15   ...
17   f(/*bar=*/true);
18   // warning: argument name 'bar' in comment does not match parameter name 'foo'
20 The check tries to detect typos and suggest automated fixes for them.
22 Options
23 -------
25 .. option:: StrictMode
27    When `false` (default value), the check will ignore leading and trailing
28    underscores and case when comparing names -- otherwise they are taken into
29    account.
31 .. option:: IgnoreSingleArgument
33    When `true`, the check will ignore the single argument.
35 .. option:: CommentBoolLiterals
37    When `true`, the check will add argument comments in the format
38    ``/*ParameterName=*/`` right before the boolean literal argument.
40 Before:
42 .. code-block:: c++
44   void foo(bool TurnKey, bool PressButton);
46   foo(true, false);
48 After:
50 .. code-block:: c++
52   void foo(bool TurnKey, bool PressButton);
54   foo(/*TurnKey=*/true, /*PressButton=*/false);
56 .. option:: CommentIntegerLiterals
58    When true, the check will add argument comments in the format
59    ``/*ParameterName=*/`` right before the integer literal argument.
61 Before:
63 .. code-block:: c++
65   void foo(int MeaningOfLife);
67   foo(42);
69 After:
71 .. code-block:: c++
73   void foo(int MeaningOfLife);
75   foo(/*MeaningOfLife=*/42);
77 .. option:: CommentFloatLiterals
79    When true, the check will add argument comments in the format
80    ``/*ParameterName=*/`` right before the float/double literal argument.
82 Before:
84 .. code-block:: c++
86   void foo(float Pi);
88   foo(3.14159);
90 After:
92 .. code-block:: c++
94   void foo(float Pi);
96   foo(/*Pi=*/3.14159);
98 .. option:: CommentStringLiterals
100    When true, the check will add argument comments in the format
101    ``/*ParameterName=*/`` right before the string literal argument.
103 Before:
105 .. code-block:: c++
107   void foo(const char *String);
108   void foo(const wchar_t *WideString);
110   foo("Hello World");
111   foo(L"Hello World");
113 After:
115 .. code-block:: c++
117   void foo(const char *String);
118   void foo(const wchar_t *WideString);
120   foo(/*String=*/"Hello World");
121   foo(/*WideString=*/L"Hello World");
123 .. option:: CommentCharacterLiterals
125    When true, the check will add argument comments in the format
126    ``/*ParameterName=*/`` right before the character literal argument.
128 Before:
130 .. code-block:: c++
132   void foo(char *Character);
134   foo('A');
136 After:
138 .. code-block:: c++
140   void foo(char *Character);
142   foo(/*Character=*/'A');
144 .. option:: CommentUserDefinedLiterals
146    When true, the check will add argument comments in the format
147    ``/*ParameterName=*/`` right before the user defined literal argument.
149 Before:
151 .. code-block:: c++
153   void foo(double Distance);
155   double operator"" _km(long double);
157   foo(402.0_km);
159 After:
161 .. code-block:: c++
163   void foo(double Distance);
165   double operator"" _km(long double);
167   foo(/*Distance=*/402.0_km);
169 .. option:: CommentNullPtrs
171    When true, the check will add argument comments in the format
172    ``/*ParameterName=*/`` right before the nullptr literal argument.
174 Before:
176 .. code-block:: c++
178   void foo(A* Value);
180   foo(nullptr);
182 After:
184 .. code-block:: c++
186   void foo(A* Value);
188   foo(/*Value=*/nullptr);