We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 390b41a commit bfe09c1Copy full SHA for bfe09c1
1 file changed
Common/Tools/TListHandler.h
@@ -48,15 +48,15 @@ class TListHandler
48
struct HistName {
49
// ctor for histogram names that are already hashed at compile time via HIST("myHistName")
50
template <char... chars>
51
- constexpr HistName(const ConstStr<chars...>& hashedHistName); // NOLINT(runtime/explicit)
+ constexpr HistName(const ConstStr<chars...>& hashedHistName); // NO LINT(runtime / explicit)
52
char const* const str{};
53
const uint32_t hash{};
54
const uint32_t idx{};
55
56
protected:
57
friend class TListHandler;
58
// ctor that does the hashing at runtime (for internal use only)
59
- constexpr HistName(char const* const name); // NOLINT(runtime/explicit)
+ constexpr HistName(char const* const name); // NO LINT(runtime / explicit)
60
};
61
62
public:
0 commit comments