diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-07-06 15:01:01 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-07-06 15:48:26 -0700 |
commit | 47c853f9dd518ef25d23b94bc0e77dbda3c2ddab (patch) | |
tree | 8ff9096ba12c49257d6b598185d9ff8a288c62b2 /host/lib/cal | |
parent | 51ecda41e3c57883ee4787cec0a8aede6020d092 (diff) | |
download | uhd-47c853f9dd518ef25d23b94bc0e77dbda3c2ddab.tar.gz uhd-47c853f9dd518ef25d23b94bc0e77dbda3c2ddab.tar.bz2 uhd-47c853f9dd518ef25d23b94bc0e77dbda3c2ddab.zip |
boost: Added workaround for Boost 1.64
Diffstat (limited to 'host/lib/cal')
-rw-r--r-- | host/lib/cal/interpolation.ipp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/host/lib/cal/interpolation.ipp b/host/lib/cal/interpolation.ipp index 1544b041c..f27b5e209 100644 --- a/host/lib/cal/interpolation.ipp +++ b/host/lib/cal/interpolation.ipp @@ -20,6 +20,10 @@ #include "interpolation.hpp" #include <uhd/utils/log.hpp> +// This is a bugfix for Boost 1.64, maybe future Boosts won't need this +#if BOOST_VERSION >= 106400 +# include <boost/serialization/array_wrapper.hpp> +#endif // end of bugfix #include <boost/numeric/ublas/io.hpp> #include <boost/numeric/ublas/matrix.hpp> #include <boost/numeric/ublas/lu.hpp> |