From 24fb09cb3ee865da0ce9bd2511617f84fdb223af Mon Sep 17 00:00:00 2001 From: Conrad Poelman Date: Mon, 30 Apr 2018 16:26:21 -0400 Subject: [PATCH] Eliminate dllexport compile and link warnings per https://svn.boost.org/trac10/ticket/13286#trac-add-comment . --- boost/archive/codecvt_null.hpp | 4 ++-- boost/serialization/singleton.hpp | 2 +- libs/serialization/src/codecvt_null.cpp | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/boost/archive/codecvt_null.hpp b/boost/archive/codecvt_null.hpp index 7bce2b9b3..78b10cf4d 100644 --- a/boost/archive/codecvt_null.hpp +++ b/boost/archive/codecvt_null.hpp @@ -65,7 +65,7 @@ public: template<> class BOOST_SYMBOL_VISIBLE codecvt_null : public std::codecvt { - virtual BOOST_WARCHIVE_DECL BOOST_DLLEXPORT std::codecvt_base::result + virtual BOOST_DLLEXPORT std::codecvt_base::result do_out( std::mbstate_t & state, const wchar_t * first1, @@ -75,7 +75,7 @@ class BOOST_SYMBOL_VISIBLE codecvt_null : public std::codecvt::do_out( std::mbstate_t & /*state*/, const wchar_t * first1, @@ -46,7 +46,7 @@ codecvt_null::do_out( return std::codecvt_base::ok; } -BOOST_WARCHIVE_DECL BOOST_DLLEXPORT std::codecvt_base::result +BOOST_DLLEXPORT std::codecvt_base::result codecvt_null::do_in( std::mbstate_t & /*state*/, const char * first1, -- 2.15.0.windows.1