COMP: adjust tests to compile with current code base

This commit is contained in:
Mark Olesen
2018-02-20 17:24:08 +01:00
parent 87b1bbacd8
commit 03b287ed24
11 changed files with 41 additions and 26 deletions

View File

@ -99,7 +99,7 @@ int main()
HashTable<scalar> table2(table1);
HashTable<scalar> table3(table1.xfer());
HashTable<scalar> table3(std::move(table1));
Info<< "\ncopy table1 -> table2" << nl
<< "transfer table1 -> table3 via the xfer() method" << nl;