kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit dc1f7e4e50d56d4ce4c5fd5bfaf68d80178ffc2e
parent d4182f5efc6f5f3ea3911bf16aa233c66d05b214
Author: [email protected] <[email protected]>
Date:   Fri, 19 Aug 2016 17:36:26 +0300

Fix includes

Diffstat:
Minclude/kfr/base/basic_expressions.hpp | 4++--
Minclude/kfr/base/conversion.hpp | 8++++----
Minclude/kfr/base/cpuid.hpp | 2+-
Minclude/kfr/base/generators.hpp | 10+++++-----
Minclude/kfr/base/memory.hpp | 4++--
Minclude/kfr/base/pointer.hpp | 2+-
Minclude/kfr/base/reduce.hpp | 8++++----
Minclude/kfr/base/univector.hpp | 8++++----
8 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/include/kfr/base/basic_expressions.hpp b/include/kfr/base/basic_expressions.hpp @@ -25,8 +25,8 @@ */ #pragma once -#include "../base/univector.hpp" -#include "../base/vec.hpp" +#include "univector.hpp" +#include "vec.hpp" namespace kfr { diff --git a/include/kfr/base/conversion.hpp b/include/kfr/base/conversion.hpp @@ -26,10 +26,10 @@ #pragma once -#include "../base/basic_expressions.hpp" -#include "../base/function.hpp" -#include "../base/operators.hpp" -#include "../base/vec.hpp" +#include "basic_expressions.hpp" +#include "function.hpp" +#include "operators.hpp" +#include "vec.hpp" namespace kfr { diff --git a/include/kfr/base/cpuid.hpp b/include/kfr/base/cpuid.hpp @@ -25,7 +25,7 @@ */ #pragma once -#include "../base/types.hpp" +#include "types.hpp" #include <cstring> namespace kfr diff --git a/include/kfr/base/generators.hpp b/include/kfr/base/generators.hpp @@ -25,11 +25,11 @@ */ #pragma once -#include "../base/function.hpp" -#include "../base/log_exp.hpp" -#include "../base/select.hpp" -#include "../base/sin_cos.hpp" -#include "../base/vec.hpp" +#include "function.hpp" +#include "log_exp.hpp" +#include "select.hpp" +#include "sin_cos.hpp" +#include "vec.hpp" namespace kfr { diff --git a/include/kfr/base/memory.hpp b/include/kfr/base/memory.hpp @@ -25,8 +25,8 @@ */ #pragma once -#include "../base/read_write.hpp" -#include "../base/types.hpp" +#include "read_write.hpp" +#include "types.hpp" #include <atomic> #include <memory> diff --git a/include/kfr/base/pointer.hpp b/include/kfr/base/pointer.hpp @@ -25,7 +25,7 @@ */ #pragma once -#include "../base/vec.hpp" +#include "vec.hpp" #include "basic_expressions.hpp" #include <memory> diff --git a/include/kfr/base/reduce.hpp b/include/kfr/base/reduce.hpp @@ -25,10 +25,10 @@ */ #pragma once -#include "../base/function.hpp" -#include "../base/min_max.hpp" -#include "../base/operators.hpp" -#include "../base/vec.hpp" +#include "function.hpp" +#include "min_max.hpp" +#include "operators.hpp" +#include "vec.hpp" #include "basic_expressions.hpp" namespace kfr diff --git a/include/kfr/base/univector.hpp b/include/kfr/base/univector.hpp @@ -25,10 +25,10 @@ */ #pragma once -#include "../base/function.hpp" -#include "../base/memory.hpp" -#include "../base/read_write.hpp" -#include "../base/types.hpp" +#include "function.hpp" +#include "memory.hpp" +#include "read_write.hpp" +#include "types.hpp" namespace kfr {