diff options
Diffstat (limited to 'gr-fft/lib/fft.cc')
-rw-r--r-- | gr-fft/lib/fft.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gr-fft/lib/fft.cc b/gr-fft/lib/fft.cc index 6b50d1f261..7239357196 100644 --- a/gr-fft/lib/fft.cc +++ b/gr-fft/lib/fft.cc @@ -35,12 +35,11 @@ static int my_fftw_read_char(void* f) { return fgetc((FILE*)f); } #include <cstdio> #include <cstdlib> #include <cstring> +#include <filesystem> #include <stdexcept> -#include <boost/filesystem/operations.hpp> -#include <boost/filesystem/path.hpp> #include <boost/interprocess/sync/file_lock.hpp> -namespace fs = boost::filesystem; +namespace fs = std::filesystem; namespace gr { namespace fft { |