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

Fix BOOST_UUID_REPORT_IMPLEMENTATION messages

This commit is contained in:
Peter Dimov
2026-01-06 16:26:35 +02:00
parent 974f7f7387
commit e567490082
4 changed files with 14 additions and 16 deletions

View File

@@ -10,8 +10,14 @@
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/detail/config.hpp>
#include <boost/uuid/detail/is_constant_evaluated.hpp>
#if defined(BOOST_UUID_USE_SSE41)
#include <boost/uuid/detail/from_chars_x86.hpp>
# include <boost/uuid/detail/from_chars_x86.hpp>
#elif defined(BOOST_UUID_REPORT_IMPLEMENTATION)
# include <boost/config/pragma_message.hpp>
BOOST_PRAGMA_MESSAGE( "Using from_chars_generic.hpp" )
#endif
namespace boost {

View File

@@ -10,13 +10,6 @@
#include <boost/config.hpp>
#include <cstddef>
#if defined(BOOST_UUID_REPORT_IMPLEMENTATION)
#include <boost/config/pragma_message.hpp>
BOOST_PRAGMA_MESSAGE( "Using from_chars_generic.hpp" )
#endif
namespace boost {
namespace uuids {
namespace detail {

View File

@@ -10,8 +10,14 @@
#include <boost/uuid/detail/config.hpp>
#include <boost/uuid/detail/is_constant_evaluated.hpp>
#include <boost/uuid/detail/to_chars_generic.hpp>
#if defined(BOOST_UUID_USE_SSSE3)
#include <boost/uuid/detail/to_chars_x86.hpp>
# include <boost/uuid/detail/to_chars_x86.hpp>
#elif defined(BOOST_UUID_REPORT_IMPLEMENTATION)
# include <boost/config/pragma_message.hpp>
BOOST_PRAGMA_MESSAGE( "Using to_chars_generic.hpp" )
#endif
namespace boost {

View File

@@ -9,13 +9,6 @@
#include <boost/uuid/uuid.hpp>
#include <boost/config.hpp>
#if defined(BOOST_UUID_REPORT_IMPLEMENTATION)
#include <boost/config/pragma_message.hpp>
BOOST_PRAGMA_MESSAGE( "Using to_chars_generic.hpp" )
#endif
namespace boost {
namespace uuids {
namespace detail {