summaryrefslogtreecommitdiff
path: root/unittests/core.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan.goodliffe@octal.co.uk>2022-02-15 17:34:51 +0000
committerDan Goodliffe <dan.goodliffe@octal.co.uk>2022-02-15 17:34:51 +0000
commit4ac149951b2020b4a6dafb0455d3f523e7c9cfe6 (patch)
tree698d4471463b68bc16ce2f291a0eaab86bcb5e13 /unittests/core.cpp
parentBump to C++20 for compat with other libs (diff)
downloadnetfs-gitfs-4ac149951b2020b4a6dafb0455d3f523e7c9cfe6.tar.bz2
netfs-gitfs-4ac149951b2020b4a6dafb0455d3f523e7c9cfe6.tar.xz
netfs-gitfs-4ac149951b2020b4a6dafb0455d3f523e7c9cfe6.zip
Fix up all warnings from all the toolsnetfs-gitfs-0.2.2
Diffstat (limited to 'unittests/core.cpp')
-rw-r--r--unittests/core.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/unittests/core.cpp b/unittests/core.cpp
index 9cd7552..e64ae80 100644
--- a/unittests/core.cpp
+++ b/unittests/core.cpp
@@ -1,10 +1,22 @@
#define BOOST_TEST_MODULE GitFS_Core
-#include <boost/test/data/test_case.hpp>
+#include <boost/test/data/test_case.hpp> // IWYU pragma: keep
#include <boost/test/unit_test.hpp>
#include "mockDefs.h"
-#include "sys/fcntl.h"
-#include "sys/stat.h"
+#include <algorithm>
+#include <cerrno>
+#include <cstdio>
+#include <exceptions.h>
+#include <fcntl.h>
+#include <map>
+#include <memory>
+#include <ostream>
+#include <string>
+#include <sys/stat.h>
+#include <tuple>
+#include <unistd.h>
+#include <vector>
+#include <volume.h>
using namespace GitFS;
using namespace GitFS::Test;