mirror of
https://github.com/boostorg/exception.git
synced 2026-01-25 00:12:24 +01:00
10 lines
174 B
C++
10 lines
174 B
C++
|
|
#include "visibility_test_lib.hpp"
|
||
|
|
#include <boost/throw_exception.hpp>
|
||
|
|
|
||
|
|
void
|
||
|
|
BOOST_SYMBOL_EXPORT
|
||
|
|
hidden_throw()
|
||
|
|
{
|
||
|
|
BOOST_THROW_EXCEPTION(my_exception() << my_info(42));
|
||
|
|
}
|