From 99c2730bc9db270560671f2d7d173768465ed51f Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 31 Oct 2016 14:30:52 -0700 Subject: Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width types) - Also removes all references to boost/cstdint.hpp and replaces it with stdint.h (The 'correct' replacement would be , but not all of our compilers support that). --- host/lib/deprecated.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'host/lib/deprecated.cpp') diff --git a/host/lib/deprecated.cpp b/host/lib/deprecated.cpp index 0fc751eeb..839f7a3e8 100644 --- a/host/lib/deprecated.cpp +++ b/host/lib/deprecated.cpp @@ -4,7 +4,7 @@ #include #include -#include +#include #include #include #include @@ -33,8 +33,8 @@ static std::vector get_tid_size_table(void){ std::vector table(128, 0); table[size_t(io_type_t::COMPLEX_FLOAT64)] = sizeof(std::complex); table[size_t(io_type_t::COMPLEX_FLOAT32)] = sizeof(std::complex); - table[size_t(io_type_t::COMPLEX_INT16)] = sizeof(std::complex); - table[size_t(io_type_t::COMPLEX_INT8)] = sizeof(std::complex); + table[size_t(io_type_t::COMPLEX_INT16)] = sizeof(std::complex); + table[size_t(io_type_t::COMPLEX_INT8)] = sizeof(std::complex); return table; } -- cgit v1.2.3