Skip to content

Commit 47ee86f

Browse files
Update TListHandler.h
1 parent b24e930 commit 47ee86f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Common/Tools/TListHandler.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ class TListHandler
4848
struct HistName {
4949
// ctor for histogram names that are already hashed at compile time via HIST("myHistName")
5050
template <char... chars>
51-
constexpr HistName(const ConstStr<chars...>& hashedHistName);
51+
constexpr HistName(const ConstStr<chars...>& hashedHistName); // NOLINT(runtime/explicit)
5252
char const* const str{};
5353
const uint32_t hash{};
5454
const uint32_t idx{};
5555

5656
protected:
5757
friend class TListHandler;
5858
// ctor that does the hashing at runtime (for internal use only)
59-
constexpr HistName(char const* const name);
59+
constexpr HistName(char const* const name); // NOLINT(runtime/explicit)
6060
};
6161

6262
public:

0 commit comments

Comments
 (0)