Removed dead files.

Changed some asserts to BOOST_ASSERT.
Disabled collation in one test (locale dependent behaviour fails on some platforms).


[SVN r26722]
This commit is contained in:
John Maddock
2005-01-18 12:51:26 +00:00
parent c8c4c1c289
commit 9781fe3150
6 changed files with 10 additions and 1442 deletions

View File

@ -235,8 +235,8 @@ mapfile::iterator mapfile::end()const
void mapfile::lock(pointer* node)const
{
assert(node >= _first);
assert(node <= _last);
BOOST_ASSERT(node >= _first);
BOOST_ASSERT(node <= _last);
if(node < _last)
{
if(*node == 0)
@ -275,8 +275,8 @@ void mapfile::lock(pointer* node)const
void mapfile::unlock(pointer* node)const
{
assert(node >= _first);
assert(node <= _last);
BOOST_ASSERT(node >= _first);
BOOST_ASSERT(node <= _last);
if(node < _last)
{
if(--(*reinterpret_cast<int*>(*node)) == 0)