diff options
author | Moritz Fischer <moritz@ettus.com> | 2014-03-23 20:30:36 +0100 |
---|---|---|
committer | Moritz Fischer <moritz@ettus.com> | 2014-03-23 20:31:26 +0100 |
commit | a92d2f82104a0ac841e7f91001826e718f2b1656 (patch) | |
tree | 73f2ccdcc5986b04567d222878d1493fc017281c /host/lib | |
parent | c1222d751a68a54783145a35c3cb43f750f1a5f8 (diff) | |
download | uhd-a92d2f82104a0ac841e7f91001826e718f2b1656.tar.gz uhd-a92d2f82104a0ac841e7f91001826e718f2b1656.tar.bz2 uhd-a92d2f82104a0ac841e7f91001826e718f2b1656.zip |
b200: Added missing include to b200_impl
* In order to use std::ceil and std::floor, on older compilers
we need to still add an include for cmath.
Tested-by: Marcus D. Leech <mleech@ripnet.com>
Signed-off-by: Moritz Fischer <moritz@ettus.com>
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index 66df1f3bc..a7f9b11bd 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -32,6 +32,7 @@ #include <boost/functional/hash.hpp> #include <cstdio> #include <ctime> +#include <cmath> using namespace uhd; using namespace uhd::usrp; |