diff --git a/include/boost/function/function_base.hpp b/include/boost/function/function_base.hpp index b20a523..d4c9c27 100644 --- a/include/boost/function/function_base.hpp +++ b/include/boost/function/function_base.hpp @@ -710,7 +710,7 @@ public: // should be protected, but GCC 2.95.3 will fail to allow access * The bad_function_call exception class is thrown when a boost::function * object is invoked */ -class bad_function_call : public std::runtime_error +class BOOST_SYMBOL_VISIBLE bad_function_call : public std::runtime_error { public: bad_function_call() : std::runtime_error("call to empty boost::function") {}