Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

host: include cstdint before boost/lockfree/queue.hpp #836

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions host/cmake/Modules/UHDAtomics.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ endfunction(CHECK_WORKING_CXX_ATOMICS64)
function(CHECK_WORKING_CXX_BOOST_ATOMICS varname)
set(CMAKE_REQUIRED_INCLUDES ${Boost_INCLUDE_DIRS})
CHECK_CXX_SOURCE_COMPILES("
#include <cstdint>
#include <boost/lockfree/queue.hpp>
boost::lockfree::queue<int> queue(1);
int main() {
Expand Down
1 change: 1 addition & 0 deletions host/lib/include/uhdlib/rfnoc/tx_async_msg_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#pragma once

#include <uhd/types/metadata.hpp>
#include <cstdint>
#include <boost/lockfree/queue.hpp>

namespace uhd { namespace rfnoc {
Expand Down
1 change: 1 addition & 0 deletions host/lib/transport/offload_io_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <uhdlib/transport/offload_io_service_client.hpp>
#include <uhdlib/utils/semaphore.hpp>
#include <condition_variable>
#include <cstdint>
#include <boost/lockfree/queue.hpp>
#include <atomic>
#include <chrono>
Expand Down
Loading