#1912: some copy edits on boost.intrusive

#1932: move semantics for shared objects
#1635: Incomplete include guard in boost/intrusive

[SVN r45692]
This commit is contained in:
Ion Gaztañaga
2008-05-23 22:13:10 +00:00
parent c3b9801811
commit c35c6680b2
22 changed files with 966 additions and 37 deletions

View File

@@ -122,6 +122,13 @@ int main ()
}
}
}
{
//Now test move semantics
file_mapping mapping(test::get_process_id_name(), read_only);
file_mapping move_ctor(move(mapping));
file_mapping move_assign;
move_assign = move(move_ctor);
}
}
catch(std::exception &exc){
std::remove(test::get_process_id_name());