Skip to content

Commit

Permalink
Suppress clang-tidy warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Jan 31, 2023
1 parent eb7c7bd commit b953f1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tao/pegtl/contrib/alphabet.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2022 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2015-2023 Dr. Colin Hirsch and Daniel Frey
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)

Expand Down Expand Up @@ -42,7 +42,7 @@ namespace tao::pegtl::alphabet
static const char F = 'F'; // NOLINT(readability-identifier-naming)
static const char G = 'G'; // NOLINT(readability-identifier-naming)
static const char H = 'H'; // NOLINT(readability-identifier-naming)
static const char I = 'I'; // NOLINT(readability-identifier-naming)
static const char I = 'I'; // NOLINT(readability-identifier-naming,misc-confusable-identifiers)
static const char J = 'J'; // NOLINT(readability-identifier-naming)
static const char K = 'K'; // NOLINT(readability-identifier-naming)
static const char L = 'L'; // NOLINT(readability-identifier-naming)
Expand Down

0 comments on commit b953f1b

Please sign in to comment.