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/ui/thread/FileReadThread.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/ui/thread/FileReadThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/thread/FileReadThread.cpp b/src/ui/thread/FileReadThread.cpp index 1ed9ae60..b0eae355 100644 --- a/src/ui/thread/FileReadThread.cpp +++ b/src/ui/thread/FileReadThread.cpp @@ -26,7 +26,7 @@ #include "FileReadThread.h" -#include <boost/filesystem.hpp> + #include <utility> namespace GpgFrontend::UI { @@ -37,7 +37,7 @@ FileReadThread::FileReadThread(std::string path) : path_(std::move(path)) { void FileReadThread::run() { LOG(INFO) << "started"; - boost::filesystem::path read_file_path(this->path_); + std::filesystem::path read_file_path(this->path_); if (is_regular_file(read_file_path)) { LOG(INFO) << "read open"; |