| 123456789101112131415161718192021222324 |
- //
- // Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- #ifndef BOOST_MYSQL_DETAIL_CONFIG_HPP
- #define BOOST_MYSQL_DETAIL_CONFIG_HPP
- // clang-format off
- #if defined(__has_include)
- #if __has_include(<version>)
- #include <version>
- #if defined(__cpp_concepts) && defined(__cpp_lib_concepts)
- #define BOOST_MYSQL_HAS_CONCEPTS
- #endif
- #endif
- #endif
- // clang-format on
- #endif
|