forked from OSchip/llvm-project
[clang-format] Update comment, NFCI
The initializer of `ParameterCount` was updated from 1 to 0 in r175165,
but the comment was never touched:
9fc56f2636
llvm-svn: 343517
This commit is contained in:
parent
e072934d28
commit
be5cda81d5
|
@ -188,10 +188,6 @@ struct FormatToken {
|
|||
bool ClosesTemplateDeclaration = false;
|
||||
|
||||
/// Number of parameters, if this is "(", "[" or "<".
|
||||
///
|
||||
/// This is initialized to 1 as we don't need to distinguish functions with
|
||||
/// 0 parameters from functions with 1 parameter. Thus, we can simply count
|
||||
/// the number of commas.
|
||||
unsigned ParameterCount = 0;
|
||||
|
||||
/// Number of parameters that are nested blocks,
|
||||
|
|
Loading…
Reference in New Issue