diff --git a/include/boost/iostreams/detail/config/dyn_link.hpp b/include/boost/iostreams/detail/config/dyn_link.hpp
index 8b13293..41fb5d7 100644
a
|
b
|
|
13 | 13 | |
14 | 14 | #if defined(_MSC_VER) |
15 | 15 | # pragma once |
16 | | #endif |
| 16 | #endif |
17 | 17 | |
18 | 18 | #include <boost/config.hpp> |
19 | 19 | #include <boost/detail/workaround.hpp> |
20 | 20 | |
21 | | //------------------Enable dynamic linking on windows-------------------------// |
| 21 | //------------------Enable dynamic linking on windows-------------------------// |
| 22 | |
22 | 23 | |
23 | | #ifdef BOOST_HAS_DECLSPEC |
| 24 | # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_IOSTREAMS_DYN_LINK) |
| 25 | # ifdef BOOST_IOSTREAMS_SOURCE |
| 26 | # define BOOST_IOSTREAMS_DECL BOOST_SYMBOL_EXPORT |
| 27 | # else |
| 28 | # define BOOST_IOSTREAMS_DECL BOOST_SYMBOL_IMPORT |
| 29 | # endif |
| 30 | # endif |
| 31 | |
| 32 | /* |
| 33 | #ifdef BOOST_HAS_DECLSPEC |
24 | 34 | # if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_IOSTREAMS_DYN_LINK) |
25 | 35 | # ifdef BOOST_IOSTREAMS_SOURCE |
26 | 36 | # define BOOST_IOSTREAMS_DECL __declspec(dllexport) |
27 | 37 | # else |
28 | 38 | # define BOOST_IOSTREAMS_DECL __declspec(dllimport) |
29 | | # endif |
30 | | # endif |
31 | | #endif |
| 39 | # endif |
| 40 | # endif |
| 41 | #endif |
| 42 | */ |
32 | 43 | |
33 | 44 | #ifndef BOOST_IOSTREAMS_DECL |
34 | 45 | # define BOOST_IOSTREAMS_DECL |