diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2019-08-09 21:30:40 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-08-09 23:04:28 +0200 |
commit | 65599ad299f030d302386fcda9bc0e3175d9a828 (patch) | |
tree | 5526a7c154441241b4daca362a12b166c735ea27 | |
parent | f7bbf2c1d8d780294f3e016aff239ca35eb6516e (diff) |
sincostable: Include what you use: <vector>
This was breaking the build after include reordering.
-rw-r--r-- | gr-channels/lib/sincostable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-channels/lib/sincostable.h b/gr-channels/lib/sincostable.h index b37aa97d62..4f40a61e70 100644 --- a/gr-channels/lib/sincostable.h +++ b/gr-channels/lib/sincostable.h @@ -3,6 +3,7 @@ #include <gnuradio/math.h> #include <cmath> +#include <vector> class sincostable { |