Skip to content

Commit d669fe3

Browse files
committed
[NFC][ntuple] suppress clang-tidy false positive
1 parent 12ef34a commit d669fe3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tree/ntuple/src/RColumnElement.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void UnpackBits(void *dst, const void *src, std::size_t count, std::size_t sizeo
5858

5959
} // namespace ROOT::Internal::BitPacking
6060

61-
namespace {
61+
namespace { // NOLINT(misc-anonymous-namespace-in-header): this header is only used in tests and in RColumnElement.cxx
6262

6363
// In this namespace, common routines are defined for element packing and unpacking of ints and floats.
6464
// The following conversions and encodings exist:
@@ -331,7 +331,7 @@ inline void CastZigzagSplitUnpack(void *destination, const void *source, std::si
331331
} // namespace
332332

333333
// anonymous namespace because these definitions are not meant to be exported.
334-
namespace {
334+
namespace { // NOLINT(misc-anonymous-namespace-in-header): this header is only used in tests and in RColumnElement.cxx
335335

336336
using ROOT::ENTupleColumnType;
337337
using ROOT::Internal::kTestFutureColumnType;

0 commit comments

Comments
 (0)