File indexing completed on 2025-01-18 09:43:32
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_PFR_DETAIL_CONFIG_HPP
0008 #define BOOST_PFR_DETAIL_CONFIG_HPP
0009 #pragma once
0010
0011 #include <boost/pfr/config.hpp>
0012
0013 #if !BOOST_PFR_ENABLED
0014
0015 #error Boost.PFR library is not supported in your environment. \
0016 Try one of the possible solutions: \
0017 1. try to take away an '-DBOOST_PFR_ENABLED=0', if it exists \
0018 2. enable C++14; \
0019 3. enable C++17; \
0020 4. update your compiler; \
0021 or disable this error by '-DBOOST_PFR_ENABLED=1' if you really know what are you doing.
0022
0023 #endif
0024
0025 #endif
0026