12 lines
290 B
C++
12 lines
290 B
C++
// Copyright 2021 Peter Dimov
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#include <boost/describe/detail/config.hpp>
|
|
|
|
#if !defined(BOOST_DESCRIBE_CXX14)
|
|
|
|
#error "Describe requires C++14"
|
|
|
|
#endif // !defined(BOOST_DESCRIBE_CXX14)
|