Fix MinGW link errors by properly exporting symbols

This commit is contained in:
Peter Dimov
2018-01-22 02:20:01 +02:00
parent fe28fa163c
commit 77817d8847
3 changed files with 53 additions and 49 deletions
-2
View File
@@ -38,7 +38,6 @@ static void test_generic_category()
std::error_category const & st = bt;
BOOST_TEST_CSTR_EQ( bt.name(), st.name() );
BOOST_TEST_EQ( bt.name(), st.name() );
}
static void test_system_category()
@@ -47,7 +46,6 @@ static void test_system_category()
std::error_category const & st = bt;
BOOST_TEST_CSTR_EQ( bt.name(), st.name() );
BOOST_TEST_EQ( bt.name(), st.name() );
}
int main()