From 5176fb61b3f2635edf38494278c919389f9f3ba3 Mon Sep 17 00:00:00 2001 From: "Dr. Colin Hirsch" Date: Fri, 19 Apr 2024 18:17:23 +0200 Subject: [PATCH] Fixes from clang-tidy. --- include/tao/pegtl/internal/math_utility.hpp | 4 ++-- include/tao/pegtl/utf16.hpp | 4 ++-- include/tao/pegtl/utf32.hpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/tao/pegtl/internal/math_utility.hpp b/include/tao/pegtl/internal/math_utility.hpp index 3a0b44190..17443afe3 100644 --- a/include/tao/pegtl/internal/math_utility.hpp +++ b/include/tao/pegtl/internal/math_utility.hpp @@ -2,8 +2,8 @@ // 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) -#ifndef TAO_PEGTL_INTERNAL_UTILITY_HPP -#define TAO_PEGTL_INTERNAL_UTILITY_HPP +#ifndef TAO_PEGTL_INTERNAL_MATH_UTILITY_HPP +#define TAO_PEGTL_INTERNAL_MATH_UTILITY_HPP #include diff --git a/include/tao/pegtl/utf16.hpp b/include/tao/pegtl/utf16.hpp index af50e405c..ef4db4ed7 100644 --- a/include/tao/pegtl/utf16.hpp +++ b/include/tao/pegtl/utf16.hpp @@ -13,10 +13,10 @@ #include "internal/rules.hpp" #define TAO_PEGTL_UTF_NAME utf16_be -#include "internal/utf_rules.ipp" +#include "internal/utf_rules.ipp" // NOLINT(readability-duplicate-include)) #define TAO_PEGTL_UTF_NAME utf16_le -#include "internal/utf_rules.ipp" +#include "internal/utf_rules.ipp" // NOLINT(readability-duplicate-include)) namespace TAO_PEGTL_NAMESPACE { diff --git a/include/tao/pegtl/utf32.hpp b/include/tao/pegtl/utf32.hpp index b2819f033..d14b1a58d 100644 --- a/include/tao/pegtl/utf32.hpp +++ b/include/tao/pegtl/utf32.hpp @@ -13,10 +13,10 @@ #include "internal/rules.hpp" #define TAO_PEGTL_UTF_NAME utf32_be -#include "internal/utf_rules.ipp" +#include "internal/utf_rules.ipp" // NOLINT(readability-duplicate-include)) #define TAO_PEGTL_UTF_NAME utf32_le -#include "internal/utf_rules.ipp" +#include "internal/utf_rules.ipp" // NOLINT(readability-duplicate-include)) namespace TAO_PEGTL_NAMESPACE {