gcc 4.3 fixes for normal and -std=c++0x modes

[SVN r46576]
This commit is contained in:
Ion Gaztañaga
2008-06-21 09:12:15 +00:00
parent 513019d931
commit 989c4332cf
25 changed files with 262 additions and 146 deletions

View File

@@ -127,7 +127,7 @@ int string_test()
std::sprintf(buffer, "%i", i);
auxShmString += buffer;
auxStdString += buffer;
shmStringVect->push_back(move(auxShmString));
shmStringVect->push_back(detail::move_impl(auxShmString));
stdStringVect->push_back(auxStdString);
}
@@ -157,7 +157,7 @@ int string_test()
std::sprintf(buffer, "%i", i);
auxShmString += buffer;
auxStdString += buffer;
shmStringVect->insert(shmStringVect->begin(), move(auxShmString));
shmStringVect->insert(shmStringVect->begin(), detail::move_impl(auxShmString));
stdStringVect->insert(stdStringVect->begin(), auxStdString);
}