aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/include/uhd/utils/log.hpp1
-rw-r--r--host/tests/log_test.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/host/include/uhd/utils/log.hpp b/host/include/uhd/utils/log.hpp
index 95ba8e670..89cb6b84d 100644
--- a/host/include/uhd/utils/log.hpp
+++ b/host/include/uhd/utils/log.hpp
@@ -11,6 +11,7 @@
#include <uhd/config.hpp>
#include <boost/current_function.hpp>
#include <boost/thread/thread.hpp>
+#include <iomanip>
#include <iostream>
#include <ostream>
#include <sstream>
diff --git a/host/tests/log_test.cpp b/host/tests/log_test.cpp
index 66afa315f..b844208e4 100644
--- a/host/tests/log_test.cpp
+++ b/host/tests/log_test.cpp
@@ -28,4 +28,5 @@ BOOST_AUTO_TEST_CASE(test_messages)
UHD_HERE();
const int x = 42;
UHD_VAR(x);
+ UHD_HEX(x);
}