diff options
author | Saturneric <[email protected]> | 2022-02-05 09:35:55 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-02-05 09:35:55 +0000 |
commit | 260bb5426b6621d409f4e68981e49c936cb313bb (patch) | |
tree | 48a9b97c891d2bd8a02a43ce25dc5b725fe9a115 /src/init.cpp | |
parent | <refactor>(ui, core, project): Move Key Package logic into core (diff) | |
download | GpgFrontend-260bb5426b6621d409f4e68981e49c936cb313bb.tar.gz GpgFrontend-260bb5426b6621d409f4e68981e49c936cb313bb.zip |
<refactor>(ui, core, project): Use std::filesystem instead of boost::filesystem
Diffstat (limited to '')
-rw-r--r-- | src/init.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/init.cpp b/src/init.cpp index d95a3351..b1ea8df8 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -34,11 +34,11 @@ * @brief Get the files of a given directory * * @param _path target directory - * @return std::vector<boost::filesystem::path> + * @return std::vector<std::filesystem::path> */ -std::vector<boost::filesystem::path> get_files_of_directory( - const boost::filesystem::path& _path) { - namespace fs = boost::filesystem; +std::vector<std::filesystem::path> get_files_of_directory( + const std::filesystem::path& _path) { + namespace fs = std::filesystem; std::vector<fs::path> path_list; if (!_path.empty()) { fs::recursive_directory_iterator end; |