From 9d4394681294d003f77b9175c6897f7c96af7f13 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 26 Sep 2018 03:48:09 +0300 Subject: [PATCH] Add BOOST_SYMBOL_VISIBLE to exception types in throw_from_library_test --- test/lib1_throw.hpp | 2 +- test/lib2_throw.hpp | 2 +- test/lib3_throw.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/lib1_throw.hpp b/test/lib1_throw.hpp index 4f960bf..f3d169b 100644 --- a/test/lib1_throw.hpp +++ b/test/lib1_throw.hpp @@ -24,7 +24,7 @@ namespace lib1 { -struct exception: public std::exception +struct BOOST_SYMBOL_VISIBLE exception: public std::exception { }; diff --git a/test/lib2_throw.hpp b/test/lib2_throw.hpp index 9e85dea..59e8dc2 100644 --- a/test/lib2_throw.hpp +++ b/test/lib2_throw.hpp @@ -24,7 +24,7 @@ namespace lib2 { -struct exception: public std::exception +struct BOOST_SYMBOL_VISIBLE exception: public std::exception { }; diff --git a/test/lib3_throw.hpp b/test/lib3_throw.hpp index 5144b30..da280ab 100644 --- a/test/lib3_throw.hpp +++ b/test/lib3_throw.hpp @@ -24,7 +24,7 @@ namespace lib3 { -struct exception: public std::exception +struct BOOST_SYMBOL_VISIBLE exception: public std::exception { };