diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2023-03-06 23:41:46 +0100 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-03-23 12:52:00 +0100 |
commit | 18fb36367a28819bd5ab402344802796a1248979 (patch) | |
tree | f3b9230dd86440f68d1bad93040470e503f886f9 /src/test/fs_tests.cpp | |
parent | 40e1c4d4024b8ad35f2511b2e10bf80c5531dfde (diff) |
refactor: Extract util/fs_helpers from util/system
This is an extraction of filesystem related functions from util/system
into their own utility file.
The background of this commit is an ongoing effort to decouple the
libbitcoinkernel library from the ArgsManager defined in system.h.
Moving these functions out of system.h allows including them from a
separate source file without including the ArgsManager definitions from
system.h.
Diffstat (limited to 'src/test/fs_tests.cpp')
-rw-r--r-- | src/test/fs_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fs_tests.cpp b/src/test/fs_tests.cpp index 7e7d630daa..20c048bf78 100644 --- a/src/test/fs_tests.cpp +++ b/src/test/fs_tests.cpp @@ -4,7 +4,7 @@ // #include <fs.h> #include <test/util/setup_common.h> -#include <util/system.h> +#include <util/fs_helpers.h> #include <util/getuniquepath.h> #include <boost/test/unit_test.hpp> |