From 04a83b6e76beef970854da69ba882d717669b49c Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 9 Jul 2021 11:02:01 +0200 Subject: uhd: Replace boost::thread::id with std::thread::id The Boost version is identical to the std:: version (which is available since C++11) and thus is no longer needed. Because of implicit includes, this breaks compilation in other parts. Appropriate includes were added there also. --- host/lib/utils/log_c.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib/utils/log_c.cpp') diff --git a/host/lib/utils/log_c.cpp b/host/lib/utils/log_c.cpp index be08dbe01..932ab25ff 100644 --- a/host/lib/utils/log_c.cpp +++ b/host/lib/utils/log_c.cpp @@ -48,7 +48,7 @@ void UHD_API _uhd_log(const uhd_log_severity_level_t log_level, filename, unsigned(lineno), component, - boost::this_thread::get_id()) + std::this_thread::get_id()) << c_str; } catch (...) { } -- cgit v1.2.3