tests/sys/fs/fusefs: include iomanip header

io.cc relies on `std::setw(..)`, which is exported by the iomanip C++
header. Newer versions of GoogleTest don't export this header, so add
the explicit include.

This unbreaks the build with GoogleTest 1.15.2.

MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D47194
This commit is contained in:
Enji Cooper
2024-10-19 08:34:07 -07:00
parent 6d42d5dbdd
commit 0077477f21
+2
View File
@@ -38,6 +38,8 @@ extern "C" {
#include <unistd.h>
}
#include <iomanip>
#include "mockfs.hh"
#include "utils.hh"