From 603dacf69e902ec12f1b0ee4fede848f23e7f7e0 Mon Sep 17 00:00:00 2001 From: Nahuel Gaitan <45178494+N4gtan@users.noreply.github.com> Date: Thu, 1 Jan 2026 22:21:38 -0300 Subject: [PATCH] add to dynamic headers --- README.md | 2 ++ include/ghc/fs_std.hpp | 1 + include/ghc/fs_std_fwd.hpp | 1 + 3 files changed, 4 insertions(+) diff --git a/README.md b/README.md index f510042..4ecb61e 100644 --- a/README.md +++ b/README.md @@ -239,6 +239,7 @@ you might use: #ifdef GHC_USE_STD_FS #include + #include namespace fs { using namespace std::filesystem; using ifstream = std::ifstream; @@ -318,6 +319,7 @@ switching like this: #ifdef GHC_USE_STD_FS #include + #include namespace fs { using namespace std::filesystem; using ifstream = std::ifstream; diff --git a/include/ghc/fs_std.hpp b/include/ghc/fs_std.hpp index f09eeec..9eb38ac 100644 --- a/include/ghc/fs_std.hpp +++ b/include/ghc/fs_std.hpp @@ -58,6 +58,7 @@ #ifdef GHC_USE_STD_FS #include + #include namespace fs { using namespace std::filesystem; using ifstream = std::ifstream; diff --git a/include/ghc/fs_std_fwd.hpp b/include/ghc/fs_std_fwd.hpp index 372470f..3114d75 100644 --- a/include/ghc/fs_std_fwd.hpp +++ b/include/ghc/fs_std_fwd.hpp @@ -60,6 +60,7 @@ #ifdef GHC_USE_STD_FS #include + #include namespace fs { using namespace std::filesystem; using ifstream = std::ifstream;