Spell things consistently. Add some bits of Mac stuff to the tests.

Use std::size_t where needed.


[SVN r10800]
This commit is contained in:
Darin Adler
2001-08-07 17:22:02 +00:00
parent 77f76889f8
commit a06c964cab
3 changed files with 4 additions and 4 deletions

View File

@ -196,7 +196,7 @@ ADDED: High level C++ class RegEx.
Version 111:
BUG: Wouldn't compile directly on C++ Builder 4 when it was released
(not really a bug - more an incompatability)
(not really a bug - more an incompatibility)
FIXED: All bugs discovered prior to this version (below).

View File

@ -100,7 +100,7 @@ int main()
std::deque<char> ds;
boost::regex_t r;
boost::scoped_array<boost::regmatch_t> matches;
size_t nsubs;
std::size_t nsubs;
boost::timer t;
double tim;
bool result;

View File

@ -23,7 +23,7 @@
*/
/* start with C compatability API */
/* start with C compatibility API */
#ifndef BOOST_RE_REGEX_HPP
#define BOOST_RE_REGEX_HPP
@ -637,7 +637,7 @@ public:
bool BOOST_RE_CALL operator<(const reg_expression&)const;
//
// The following are deprecated as public interfaces
// but are available for compatability with earlier versions.
// but are available for compatibility with earlier versions.
allocator_type BOOST_RE_CALL allocator()const;
const charT* BOOST_RE_CALL expression()const { return (this->error_code() ? 0 : _expression); }
unsigned int BOOST_RE_CALL set_expression(const charT* p, const charT* end, flag_type f = regbase::normal);