summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/sys_paths.cc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2021-02-24 05:15:36 -0700
committermormj <34754695+mormj@users.noreply.github.com>2021-03-13 13:13:04 -0500
commit72c013a798cd3f4ace6f0fcf09f0c238cbfcabdb (patch)
tree626918947f83e908ebc9f75bd70753b4ec11a8b5 /gnuradio-runtime/lib/sys_paths.cc
parent8793effe5d6013c95b44f52551ba0d660157b263 (diff)
Replace boost::filesystem with std::filesystem
Signed-off-by: Zackery Spytz <zspytz@gmail.com>
Diffstat (limited to 'gnuradio-runtime/lib/sys_paths.cc')
-rw-r--r--gnuradio-runtime/lib/sys_paths.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/gnuradio-runtime/lib/sys_paths.cc b/gnuradio-runtime/lib/sys_paths.cc
index 91d2ff12d8..1ec46c9c40 100644
--- a/gnuradio-runtime/lib/sys_paths.cc
+++ b/gnuradio-runtime/lib/sys_paths.cc
@@ -10,8 +10,7 @@
#include <gnuradio/sys_paths.h>
#include <cstdio> //P_tmpdir (maybe)
#include <cstdlib> //getenv
-
-#include <boost/filesystem/path.hpp>
+#include <filesystem>
namespace gr {
@@ -58,7 +57,7 @@ std::string __userconf_path()
// First determine if there is an environment variable specifying the prefs path
path = getenv("GR_PREFS_PATH");
- boost::filesystem::path p;
+ std::filesystem::path p;
if (path) {
p = path;
} else {