forked from OSchip/llvm-project
[clang-tidy] Hotfix default parameter value in 'bugprone-easily-swappable-parameters'
As identified by @RKSimon, there was a missing comma in the default value for the "ignored parameter type suffixes" array, resulting in bogus concatenation of two elements.
This commit is contained in:
parent
c528c9490b
commit
8d50a847d4
|
@ -56,7 +56,7 @@ static const std::string DefaultIgnoredParameterTypeSuffixes =
|
|||
"reverse_const_iterator",
|
||||
"ConstReverseIterator",
|
||||
"Const_Reverse_Iterator",
|
||||
"const_reverse_iterator"
|
||||
"const_reverse_iterator",
|
||||
"Constreverseiterator",
|
||||
"constreverseiterator"});
|
||||
|
||||
|
|
Loading…
Reference in New Issue