aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-07-06 15:01:01 -0700
committerMartin Braun <martin.braun@ettus.com>2017-07-06 15:48:26 -0700
commit47c853f9dd518ef25d23b94bc0e77dbda3c2ddab (patch)
tree8ff9096ba12c49257d6b598185d9ff8a288c62b2
parent51ecda41e3c57883ee4787cec0a8aede6020d092 (diff)
downloaduhd-47c853f9dd518ef25d23b94bc0e77dbda3c2ddab.tar.gz
uhd-47c853f9dd518ef25d23b94bc0e77dbda3c2ddab.tar.bz2
uhd-47c853f9dd518ef25d23b94bc0e77dbda3c2ddab.zip
boost: Added workaround for Boost 1.64
-rw-r--r--host/lib/cal/interpolation.ipp4
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>