2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Reorder includes

This commit is contained in:
Peter Dimov
2026-01-05 16:02:11 +02:00
parent 0038762216
commit db92124922
3 changed files with 5 additions and 8 deletions

View File

@@ -8,6 +8,7 @@
#include <boost/uuid/detail/is_constant_evaluated.hpp>
#include <boost/config.hpp>
#include <cstddef>
#include <cstring>
#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 <cstring>
#endif
namespace boost {
namespace uuids {
namespace detail {

View File

@@ -5,11 +5,11 @@
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/uuid/detail/from_chars_generic.hpp>
#include <boost/uuid/detail/from_chars_result.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/detail/config.hpp>
#include <boost/uuid/detail/is_constant_evaluated.hpp>
#include <boost/uuid/detail/from_chars_result.hpp>
#include <boost/uuid/detail/from_chars_generic.hpp>
#if defined(BOOST_UUID_USE_SSE41)
#include <boost/uuid/detail/from_chars_x86.hpp>
#endif

View File

@@ -5,10 +5,10 @@
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <cstddef>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/detail/from_chars_result.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/config.hpp>
#include <cstddef>
#if defined(BOOST_UUID_REPORT_IMPLEMENTATION)