aboutsummaryrefslogtreecommitdiff
path: root/zenstore/include
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-10-13 11:09:15 +0200
committerMartin Ridgers <[email protected]>2021-10-13 11:09:15 +0200
commit8db6ee0cd77e2683c903c221c715b99229d76149 (patch)
treebd0751c23ce34ef6e2733b1d40e09bd6695f5318 /zenstore/include
parentSigned/unsigned comparison mismatch (diff)
downloadzen-8db6ee0cd77e2683c903c221c715b99229d76149.tar.xz
zen-8db6ee0cd77e2683c903c221c715b99229d76149.zip
std::fs::path cannot be forward declared.
libstdc++ uses has a std::fs::__cxx11::path which causes GCC to struggle with ambiguity.
Diffstat (limited to 'zenstore/include')
-rw-r--r--zenstore/include/zenstore/cidstore.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/zenstore/include/zenstore/cidstore.h b/zenstore/include/zenstore/cidstore.h
index 5f567e7fc..26bf2bbde 100644
--- a/zenstore/include/zenstore/cidstore.h
+++ b/zenstore/include/zenstore/cidstore.h
@@ -8,9 +8,7 @@
#include <zencore/iohash.h>
#include <zenstore/CAS.h>
-namespace std::filesystem {
-class path;
-}
+#include <filesystem>
namespace zen {