misc minor fixes

[SVN r7938]
This commit is contained in:
John Maddock
2000-10-14 12:03:10 +00:00
parent 65b6a3ba3e
commit fe33e5ebb9
2 changed files with 16 additions and 1 deletions

View File

@ -49,7 +49,15 @@ Do not change this file unless you really really have to, add options to
#include <string>
#include <boost/smart_ptr.hpp>
#else
//
// C build,
// don't include <boost/config.hpp> because that may
// do C++ specific things in future...
//
#include <stdlib.h>
#ifdef _MSC_VER
#define BOOST_MSVC _MSC_VER
#endif
#endif
/* this will increase in future versions: */
@ -201,7 +209,7 @@ Do not change this file unless you really really have to, add options to
#define BOOST_RE_NO_STRING_DEF_ARGS
#endif
#ifndef _CPPUNWIND
#if !defined(_CPPUNWIND) && defined(__cplusplus)
#error exception handling support required
#endif
@ -1211,5 +1219,6 @@ namespace std{

View File

@ -54,6 +54,11 @@ using boost::REG_ASSERT;
using boost::REG_INVARG;
using boost::REG_ATOI;
using boost::REG_ITOA;
using boost::REG_NOTBOL;
using boost::REG_NOTEOL;
using boost::REG_STARTEND;
using boost::reg_comp_flags;
using boost::reg_exec_flags;
using boost::regcompA;
@ -93,3 +98,4 @@ using boost::reg_errcode_t;
#endif // __cplusplus
#endif // BOOST_RE_REGEX_H