Skip to content
Snippets Groups Projects
Commit 69c2fa9c authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

IdDict: Suppress cppcheck warning.

Suppress a bogus cppcheck warning.
parent 3597a0fe
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/
/***************************************************************************
......@@ -61,7 +61,8 @@ public:
typedef Identifier::value_type value_type;
typedef Identifier::size_type size_type;
typedef enum
typedef enum
// cppcheck-suppress syntaxError
{
NBITS = sizeof(value_type) * 8, // bits per byte
MAX_BIT = (static_cast<value_type>(1) << (NBITS - 1)),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment