Fixed RegEx::Length, Fixed Borland config

[SVN r9991]
This commit is contained in:
John Maddock
2001-04-28 12:03:05 +00:00
parent 19dab6c60a
commit 774c7ec4d5
3 changed files with 11 additions and 7 deletions

View File

@ -154,14 +154,16 @@ full list of macros and their usage.
#endif
//
// import export options:
#ifdef _RTLDLL
#if defined(_RTLDLL) && !defined(BOOST_RE_NO_LIB)
#ifdef BOOST_RE_BUILD_DLL
#define BOOST_RE_IX_DECL __declspec( dllexport )
#elif !defined(BOOST_REGEX_LIBRARY_INCLUDE_HPP) && !defined(BOOST_RE_NO_LIB)
#define BOOST_RE_IX_DECL __declspec( dllimport )
#endif
#endif
#ifndef BOOST_RE_NO_LIB
#include <boost/regex/detail/regex_library_include.hpp>
#endif
#include <cwchar>
#include <cwctype>