From 08a6ba4161c66c63f14933e6e2a6b8eb95beb7cf Mon Sep 17 00:00:00 2001 From: Jakob Petsovits Date: Tue, 14 Jul 2015 17:51:45 -0400 Subject: [PATCH] Avoid a warning if BOOST_ASIO_DECL was defined but empty. --- src/asio_ssl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/asio_ssl.cpp b/src/asio_ssl.cpp index f762048e3..cea812335 100644 --- a/src/asio_ssl.cpp +++ b/src/asio_ssl.cpp @@ -13,6 +13,7 @@ // only define BOOST_ASIO_DECL if it hasn't already been defined // or if it has been defined to an empty string #if TORRENT_HAS_ASIO_DECL == x +#undef BOOST_ASIO_DECL #define BOOST_ASIO_DECL BOOST_SYMBOL_EXPORT #endif