1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-04-18 10:24:01 +03:00

Fix reporter test compilation

The compilation failed with

    error: ‘setprecision’ is not a member of ‘std’

Fix by including <iomanip>.
This commit is contained in:
Teemu Ollakka 2024-05-17 16:09:54 +03:00
parent e399d53d04
commit 664d8cc01e

View File

@ -23,9 +23,11 @@
#include <boost/json/src.hpp>
#include <fstream>
#include <deque>
#include <fstream>
#include <iomanip>
#include <vector>
#include <unistd.h> // unlink() for cleanup
namespace json = boost::json;