Added missing #undef (previously one symbol was left defined when the header exited, which caused problems when including two or more libs, one a static link and one a dynamic link).

[SVN r21857]
This commit is contained in:
John Maddock
2004-01-21 11:55:11 +00:00
parent bb140bdddc
commit cd5db2b09f

View File

@ -296,6 +296,9 @@ BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
// //
// finally undef any macros we may have set: // finally undef any macros we may have set:
// //
#ifdef BOOST_LIB_PREFIX
# undef BOOST_LIB_PREFIX
#endif
#if defined(BOOST_LIB_NAME) #if defined(BOOST_LIB_NAME)
# undef BOOST_LIB_NAME # undef BOOST_LIB_NAME
#endif #endif