mirror of
https://github.com/boostorg/interprocess.git
synced 2026-01-19 04:12:13 +00:00
gcc 4.3 fixes for normal and -std=c++0x modes
[SVN r46576]
This commit is contained in:
@@ -125,9 +125,9 @@ 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_ctor(detail::move_impl(mapping));
|
||||
file_mapping move_assign;
|
||||
move_assign = move(move_ctor);
|
||||
move_assign = detail::move_impl(move_ctor);
|
||||
}
|
||||
}
|
||||
catch(std::exception &exc){
|
||||
|
||||
Reference in New Issue
Block a user