From: Wolfgang Bangerth Date: Thu, 20 May 2021 15:42:08 +0000 (-0600) Subject: Use C++11 functionality. X-Git-Tag: v9.3.0-rc1~15^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3ee7537b2cd44bf60f649c7c041be9382ddb455;p=dealii.git Use C++11 functionality. --- diff --git a/tests/tests.h b/tests/tests.h index 533f335a72..f02a974dfc 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -501,7 +501,7 @@ initlog(bool console = false, std::ios::left) { deallogname = "output"; - deallogfile.open(deallogname.c_str()); + deallogfile.open(deallogname); deallog.attach(deallogfile, true, flags); deallog.depth_console(console ? 10 : 0); }