aboutsummaryrefslogtreecommitdiff
path: root/ssh-agent-filter.C
diff options
context:
space:
mode:
authorTimo Weingärtner <timo@tiwe.de>2020-08-24 13:42:39 +0200
committerTimo Weingärtner <timo@tiwe.de>2020-08-24 13:42:39 +0200
commit013ca71f8e07f462266f5c795930739b37c6d5fb (patch)
tree147d4e0e968b5dd293e9705f5048b73435c3e681 /ssh-agent-filter.C
parentf8351aef302fa2da6183096fdf0013b2f29900ae (diff)
downloadssh-agent-filter-013ca71f8e07f462266f5c795930739b37c6d5fb.tar.gz
use C++17 std::filesystem instead of boost
Diffstat (limited to 'ssh-agent-filter.C')
-rw-r--r--ssh-agent-filter.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-agent-filter.C b/ssh-agent-filter.C
index 340c606..e98123c 100644
--- a/ssh-agent-filter.C
+++ b/ssh-agent-filter.C
@@ -22,8 +22,8 @@
#include <boost/program_options.hpp>
namespace po = boost::program_options;
-#include <boost/filesystem.hpp>
-namespace fs = boost::filesystem;
+#include <filesystem>
+namespace fs = std::filesystem;
#include <boost/iostreams/stream.hpp>
#include <boost/iostreams/device/array.hpp>