diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-01-08 07:32:10 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-01-08 07:36:26 -0800 |
commit | c2170716410d203c3e937f5f53d0f14ffde94a1a (patch) | |
tree | 58c2fffb3e4b40ff049887c88a27c360ffe4974f /host/tests | |
parent | 5bba40ed740a831537b8986528abf38f8f1cc448 (diff) | |
download | uhd-c2170716410d203c3e937f5f53d0f14ffde94a1a.tar.gz uhd-c2170716410d203c3e937f5f53d0f14ffde94a1a.tar.bz2 uhd-c2170716410d203c3e937f5f53d0f14ffde94a1a.zip |
tests: Add #include <thread> in system time test
Some versions of MSVC report issues without it.
Diffstat (limited to 'host/tests')
-rw-r--r-- | host/tests/system_time_test.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/tests/system_time_test.cpp b/host/tests/system_time_test.cpp index 165bcf3aa..3fc759391 100644 --- a/host/tests/system_time_test.cpp +++ b/host/tests/system_time_test.cpp @@ -11,6 +11,7 @@ #include <iomanip> #include <cstdint> #include <chrono> +#include <thread> BOOST_AUTO_TEST_CASE(test_time_spec_get_system_time){ std::cout << "Testing time specification get system time..." << std::endl; |