forked from boostorg/function
- Removed the assignment-to-zero attempt - Added bad_function_call exception (using boost::throw_exception) [SVN r16102]
15 lines
511 B
C++
15 lines
511 B
C++
#ifndef BOOST_FUNCTION_PROLOGUE_HPP
|
|
#define BOOST_FUNCTION_PROLOGUE_HPP
|
|
# include <cassert>
|
|
# include <algorithm>
|
|
# include <boost/throw_exception.hpp>
|
|
# include <boost/config.hpp>
|
|
# include <boost/function/function_base.hpp>
|
|
# include <boost/mem_fn.hpp>
|
|
# include <boost/preprocessor/enum.hpp>
|
|
# include <boost/preprocessor/enum_params.hpp>
|
|
# include <boost/preprocessor/cat.hpp>
|
|
# include <boost/preprocessor/repeat.hpp>
|
|
# include <boost/preprocessor/inc.hpp>
|
|
#endif // BOOST_FUNCTION_PROLOGUE_HPP
|