Quiet compiler. Tomorrow's testsuite will show if we apply it everywhere

This commit is contained in:
Andreas Fabri 2018-11-21 16:10:17 +01:00
parent 641efa944b
commit 1137fa7313
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ int main(int argc, char** argv)
std::cerr << "Assignment f2=f...\n"; std::cerr << "Assignment f2=f...\n";
f2 = f; // check the assignment f2 = f; // check the assignment
std::cerr << "Auto-assignment f=f...\n"; std::cerr << "Auto-assignment f=f...\n";
f2 = f2; // check the auto-assignment void(f2 = f2); // check the auto-assignment
std::cerr << "Copy-construction...\n"; std::cerr << "Copy-construction...\n";
Map f3(f); // check the copy constructor Map f3(f); // check the copy constructor