Missing visibility mark on exception type

This commit is contained in:
Nikita Kniazev
2018-10-17 21:17:30 +03:00
committed by James E. King III
parent b07621f2ee
commit 755d3c2001

View File

@ -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") {}