Fixes #8420 and some clang errors.

This commit is contained in:
Ion Gaztañaga
2014-02-24 08:29:31 +01:00
parent f1de12bfef
commit 51c9e874a8
4 changed files with 25 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ int main()
boost::move_backward(v2.begin(), v2.end(), v.end());
//Test values have been moved
if(!v2[0].moved()){
if(!v2[1].moved()){
return 1;
}
@@ -48,7 +48,7 @@ int main()
return 1;
}
if(v[0].moved()){
if(v[1].moved()){
return 1;
}