forked from boostorg/function
13 lines
463 B
C++
13 lines
463 B
C++
// Copyright 2019 Peter Dimov
|
|
// Use, modification and distribution is subject to 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_FUNCTION_DETAIL_CONFIG_HPP_INCLUDED
|
|
#define BOOST_FUNCTION_DETAIL_CONFIG_HPP_INCLUDED
|
|
|
|
#if !defined(BOOST_FUNCTION_ENABLE_CXX03)
|
|
# define BOOST_FUNCTION_ENABLE_CXX03 0
|
|
#endif
|
|
|
|
#endif // #ifndef BOOST_FUNCTION_DETAIL_CONFIG_HPP_INCLUDED
|