From db9212492277a38f5328af25fdc9802f68a0cb20 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 5 Jan 2026 16:02:11 +0200 Subject: [PATCH] Reorder includes --- include/boost/uuid/detail/cstring.hpp | 5 +---- include/boost/uuid/detail/from_chars.hpp | 4 ++-- include/boost/uuid/detail/from_chars_generic.hpp | 4 ++-- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/include/boost/uuid/detail/cstring.hpp b/include/boost/uuid/detail/cstring.hpp index 5c69805..5f3feca 100644 --- a/include/boost/uuid/detail/cstring.hpp +++ b/include/boost/uuid/detail/cstring.hpp @@ -8,6 +8,7 @@ #include #include #include +#include #if defined(__has_builtin) #if __has_builtin(__builtin_memcpy) @@ -33,10 +34,6 @@ #define BOOST_UUID_DETAIL_MEMCMP std::memcmp #endif -#if !defined(BOOST_UUID_DETAIL_HAS_BUILTIN_MEMCPY) || !defined(BOOST_UUID_DETAIL_HAS_BUILTIN_MEMCMP) -#include -#endif - namespace boost { namespace uuids { namespace detail { diff --git a/include/boost/uuid/detail/from_chars.hpp b/include/boost/uuid/detail/from_chars.hpp index 09dab9b..eaf51dd 100644 --- a/include/boost/uuid/detail/from_chars.hpp +++ b/include/boost/uuid/detail/from_chars.hpp @@ -5,11 +5,11 @@ // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt +#include +#include #include #include #include -#include -#include #if defined(BOOST_UUID_USE_SSE41) #include #endif diff --git a/include/boost/uuid/detail/from_chars_generic.hpp b/include/boost/uuid/detail/from_chars_generic.hpp index 58a9617..84b89fc 100644 --- a/include/boost/uuid/detail/from_chars_generic.hpp +++ b/include/boost/uuid/detail/from_chars_generic.hpp @@ -5,10 +5,10 @@ // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt -#include -#include #include +#include #include +#include #if defined(BOOST_UUID_REPORT_IMPLEMENTATION)