aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-12-15 09:52:01 +0100
committerMartin Ridgers <[email protected]>2021-12-15 09:54:53 +0100
commit6d85f0a59e5e3884e10dc1e95076e24b2090c32b (patch)
tree2fa75e3213e0244d3f6a448958e8d71ace67eca2
parentRemoved duplicate unguarded Windows include statement (diff)
downloadzen-6d85f0a59e5e3884e10dc1e95076e24b2090c32b.tar.xz
zen-6d85f0a59e5e3884e10dc1e95076e24b2090c32b.zip
std::fs::path cannot be forward declared
On some implementations of the C++ standard library std::fs::path can be a typedef as a mechanismc to support different versions of the standard.
-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 04a3d419c..b0252a2a6 100644
--- a/zenstore/include/zenstore/cidstore.h
+++ b/zenstore/include/zenstore/cidstore.h
@@ -11,9 +11,7 @@ ZEN_THIRD_PARTY_INCLUDES_START
#include <tsl/robin_map.h>
ZEN_THIRD_PARTY_INCLUDES_END
-namespace std::filesystem {
-class path;
-}
+#include <filesystem>
namespace zen {