From 664d8cc01e90eedfa8b2e9dd7bfde1ac271b6a5a Mon Sep 17 00:00:00 2001 From: Teemu Ollakka Date: Fri, 17 May 2024 16:09:54 +0300 Subject: [PATCH] Fix reporter test compilation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The compilation failed with error: ‘setprecision’ is not a member of ‘std’ Fix by including . --- test/reporter_test.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/reporter_test.cpp b/test/reporter_test.cpp index 9ee381e..e75d719 100644 --- a/test/reporter_test.cpp +++ b/test/reporter_test.cpp @@ -23,9 +23,11 @@ #include -#include #include +#include +#include #include + #include // unlink() for cleanup namespace json = boost::json;