mirror of
https://github.com/boostorg/regex.git
synced 2025-07-14 04:46:36 +02:00
misc minor fixes
[SVN r7938]
This commit is contained in:
@ -49,7 +49,15 @@ Do not change this file unless you really really have to, add options to
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <boost/smart_ptr.hpp>
|
#include <boost/smart_ptr.hpp>
|
||||||
#else
|
#else
|
||||||
|
//
|
||||||
|
// C build,
|
||||||
|
// don't include <boost/config.hpp> because that may
|
||||||
|
// do C++ specific things in future...
|
||||||
|
//
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define BOOST_MSVC _MSC_VER
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* this will increase in future versions: */
|
/* 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
|
#define BOOST_RE_NO_STRING_DEF_ARGS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _CPPUNWIND
|
#if !defined(_CPPUNWIND) && defined(__cplusplus)
|
||||||
#error exception handling support required
|
#error exception handling support required
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -1211,5 +1219,6 @@ namespace std{
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -54,6 +54,11 @@ using boost::REG_ASSERT;
|
|||||||
using boost::REG_INVARG;
|
using boost::REG_INVARG;
|
||||||
using boost::REG_ATOI;
|
using boost::REG_ATOI;
|
||||||
using boost::REG_ITOA;
|
using boost::REG_ITOA;
|
||||||
|
|
||||||
|
using boost::REG_NOTBOL;
|
||||||
|
using boost::REG_NOTEOL;
|
||||||
|
using boost::REG_STARTEND;
|
||||||
|
|
||||||
using boost::reg_comp_flags;
|
using boost::reg_comp_flags;
|
||||||
using boost::reg_exec_flags;
|
using boost::reg_exec_flags;
|
||||||
using boost::regcompA;
|
using boost::regcompA;
|
||||||
@ -93,3 +98,4 @@ using boost::reg_errcode_t;
|
|||||||
#endif // __cplusplus
|
#endif // __cplusplus
|
||||||
|
|
||||||
#endif // BOOST_RE_REGEX_H
|
#endif // BOOST_RE_REGEX_H
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user