diff options
| author | Martin Ridgers <[email protected]> | 2021-10-13 11:09:15 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-13 11:09:15 +0200 |
| commit | 8db6ee0cd77e2683c903c221c715b99229d76149 (patch) | |
| tree | bd0751c23ce34ef6e2733b1d40e09bd6695f5318 /zenstore/include | |
| parent | Signed/unsigned comparison mismatch (diff) | |
| download | zen-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.h | 4 |
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 { |