Remove some global 'using namespace's

This commit is contained in:
Joe Thornber
2013-05-28 13:48:10 +01:00
parent 3066487814
commit 6706493304
9 changed files with 395 additions and 387 deletions

View File

@ -2,6 +2,8 @@
#include "persistent-data/space-maps/core.h"
using namespace persistent_data;
//----------------------------------------------------------------
void test::zero_block(block_manager<>::ptr bm, block_address b)
@ -10,7 +12,8 @@ void test::zero_block(block_manager<>::ptr bm, block_address b)
memset(&wr.data(), 0, sizeof(wr.data()));
}
transaction_manager::ptr test::open_temporary_tm(block_manager<>::ptr bm)
transaction_manager::ptr
test::open_temporary_tm(block_manager<>::ptr bm)
{
space_map::ptr sm(new core_map(bm->get_nr_blocks()));
transaction_manager::ptr tm(new transaction_manager(bm, sm));