regex: fixes for Como in strict mode

[SVN r8655]
This commit is contained in:
John Maddock
2001-01-20 12:57:47 +00:00
parent e927090ba0
commit 328e0b5561
3 changed files with 14 additions and 10 deletions

View File

@ -828,7 +828,7 @@ public:
pointer BOOST_RE_CALL address(reference x) const { return &x; }
const_pointer BOOST_RE_CALL address(const_reference x) const { return &x; }
static size_type BOOST_RE_CALL max_size() { return -1; }
static size_type BOOST_RE_CALL max_size() { return (size_type)-1; }
static void BOOST_RE_CALL construct(pointer p, const T& val) { jm_construct(p, val); }
void BOOST_RE_CALL destroy(pointer p) { jm_destroy(p); }
@ -1272,5 +1272,6 @@ namespace std{