Skip to content

Commit e4a1d5f

Browse files
committed
Suppress waring about unnamed vars in template syntax
1 parent a37bd02 commit e4a1d5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tinyexpr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
#include "tinyexpr.h"
5151

52-
// NOLINTBEGIN(readability-redundant-casting,readability-avoid-nested-conditional-operator)
52+
// NOLINTBEGIN(readability-redundant-casting,readability-avoid-nested-conditional-operator,hicpp-named-parameter,readability-named-parameter)
5353

5454
// builtin functions
5555
namespace te_builtins
@@ -2679,4 +2679,4 @@ std::string te_parser::info()
26792679
return sysInfo;
26802680
}
26812681

2682-
// NOLINTEND(readability-redundant-casting,readability-avoid-nested-conditional-operator)
2682+
// NOLINTEND(readability-redundant-casting,readability-avoid-nested-conditional-operator,hicpp-named-parameter,readability-named-parameter)

0 commit comments

Comments
 (0)