diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2013-12-05 08:46:22 -0800 |
---|---|---|
committer | Nicholas Corgan <nick.corgan@ettus.com> | 2013-12-05 08:46:22 -0800 |
commit | 8f0f045cdac16ae84bc446b230beb2b651428294 (patch) | |
tree | 707f9b54b4d9c4bcd8030d5e9ad7966c11409f81 | |
parent | 03a1828944aebea34114634f885fdd46471cd211 (diff) | |
download | uhd-8f0f045cdac16ae84bc446b230beb2b651428294.tar.gz uhd-8f0f045cdac16ae84bc446b230beb2b651428294.tar.bz2 uhd-8f0f045cdac16ae84bc446b230beb2b651428294.zip |
network_relay: added #include necessary for older versions of Boost on Windows
-rw-r--r-- | host/examples/network_relay.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/examples/network_relay.cpp b/host/examples/network_relay.cpp index fc1ebd91d..0a67bbf09 100644 --- a/host/examples/network_relay.cpp +++ b/host/examples/network_relay.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2012 Ettus Research LLC +// Copyright 2010-2013 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -18,6 +18,7 @@ #include <uhd/utils/thread_priority.hpp> #include <uhd/utils/safe_main.hpp> #include <boost/program_options.hpp> +#include <boost/thread/condition_variable.hpp> #include <boost/thread/thread.hpp> #include <boost/format.hpp> #include <boost/asio.hpp> |