From 755d3c20016d3a355b63956a5770c1b91b5b9470 Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Wed, 17 Oct 2018 21:17:30 +0300 Subject: [PATCH] Missing visibility mark on exception type --- include/boost/function/function_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") {}