host: fix include with newer uhd

Added explicit include of #include <boost/cstdint.hpp>
The uhd header wb_iface.hpp has moved from boost cstdint
to regular stdint.h and thus is lacking the boost include.
This commit is contained in:
Josh Blum
2017-01-17 22:55:35 -08:00
parent 53526ef9b1
commit a59b9c381a

View File

@@ -23,6 +23,7 @@
#include <uhd/transport/zero_copy.hpp> #include <uhd/transport/zero_copy.hpp>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/utility.hpp> #include <boost/utility.hpp>
#include <boost/cstdint.hpp>
#include <uhd/types/wb_iface.hpp> #include <uhd/types/wb_iface.hpp>
#include <string> #include <string>