diff options
Diffstat (limited to 'gr-fft/lib/fft.cc')
-rw-r--r-- | gr-fft/lib/fft.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-fft/lib/fft.cc b/gr-fft/lib/fft.cc index 60838ee302..b3d0f04bc0 100644 --- a/gr-fft/lib/fft.cc +++ b/gr-fft/lib/fft.cc @@ -21,7 +21,7 @@ */ #include <fft/fft.h> -#include <gr_sys_paths.h> +#include <gnuradio/sys_paths.h> #include <fftw3.h> #ifdef _MSC_VER //http://www.fftw.org/install/windows.html#DLLwisdom @@ -36,7 +36,7 @@ static int my_fftw_read_char(void *f) { return fgetc((FILE *) f); } #define fftwl_import_wisdom_from_file(f) fftwl_import_wisdom(my_fftw_read_char, (void*) (f)) #endif //_MSC_VER -#include <gr_complex.h> +#include <gnuradio/gr_complex.h> #include <stdlib.h> #include <string.h> #include <stdio.h> @@ -86,7 +86,7 @@ namespace gr { wisdom_filename() { static fs::path path; - path = fs::path(gr_appdata_path()) / ".gr_fftw_wisdom"; + path = fs::path(gr::appdata_path()) / ".gr_fftw_wisdom"; return path.string().c_str(); } |