diff options
author | Michael Dickens <michael.dickens@ettus.com> | 2018-12-13 11:26:16 -0500 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2018-12-13 09:57:06 -0800 |
commit | 1da9ef1d12586cc1fa393c7207a3415a37d1ee8d (patch) | |
tree | 327e96632eea76928fb9400c0a5d99ea1769c943 | |
parent | eac84f1b7f3b652bc46a1370c8f68aa5b2477330 (diff) | |
download | uhd-1da9ef1d12586cc1fa393c7207a3415a37d1ee8d.tar.gz uhd-1da9ef1d12586cc1fa393c7207a3415a37d1ee8d.tar.bz2 uhd-1da9ef1d12586cc1fa393c7207a3415a37d1ee8d.zip |
time_spec: include <stdint.h> for int64_t
+ needed on some older OS / compilers;
+ won't hurt newer ones that already include this header.
-rw-r--r-- | host/include/uhd/types/time_spec.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/include/uhd/types/time_spec.hpp b/host/include/uhd/types/time_spec.hpp index 8c0a2568d..c8d5443a0 100644 --- a/host/include/uhd/types/time_spec.hpp +++ b/host/include/uhd/types/time_spec.hpp @@ -10,6 +10,7 @@ #include <uhd/config.hpp> #include <boost/operators.hpp> +#include <stdint.h> namespace uhd{ |