From 1137fa73135f8f1c64585b6de7d5e3e1d47f6ff8 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 21 Nov 2018 16:10:17 +0100 Subject: [PATCH] Quiet compiler. Tomorrow's testsuite will show if we apply it everywhere --- Mesh_2/test/Mesh_2/test_double_map.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mesh_2/test/Mesh_2/test_double_map.cpp b/Mesh_2/test/Mesh_2/test_double_map.cpp index a8e1597cf75..b10368878f5 100644 --- a/Mesh_2/test/Mesh_2/test_double_map.cpp +++ b/Mesh_2/test/Mesh_2/test_double_map.cpp @@ -71,7 +71,7 @@ int main(int argc, char** argv) std::cerr << "Assignment f2=f...\n"; f2 = f; // check the assignment 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"; Map f3(f); // check the copy constructor