From f3ee7537b2cd44bf60f649c7c041be9382ddb455 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 20 May 2021 09:42:08 -0600 Subject: [PATCH] Use C++11 functionality. --- tests/tests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5