mirror of
https://github.com/boostorg/function.git
synced 2025-07-29 12:27:15 +02:00
Missing visibility mark on exception type
This commit is contained in:
committed by
James E. King III
parent
b07621f2ee
commit
755d3c2001
@ -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") {}
|
||||
|
Reference in New Issue
Block a user