Skip to content

Commit 94e8a69

Browse files
committed
Fix self-check warning
1 parent a218ea3 commit 94e8a69

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

lib/analyzer.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ struct Analyzer {
3333

3434
Action() : mFlag(0) {}
3535

36-
// cppcheck-suppress noExplicitConstructor
3736
template<class T,
3837
REQUIRES("T must be convertible to unsigned int", std::is_convertible<T, unsigned int> ),
3938
REQUIRES("T must not be a bool", !std::is_same<T, bool> )>
40-
Action(T f) : mFlag(f)
39+
Action(T f) : mFlag(f) // cppcheck-suppress noExplicitConstructor
4140
{}
4241

4342
enum {

0 commit comments

Comments
 (0)