diff options
author | Daniel Estévez <daniel@destevez.net> | 2020-07-19 16:20:52 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-07-30 08:09:03 -0400 |
commit | aef17664ba3047acaab71a61adb60aee4ea7c2fc (patch) | |
tree | 423676c0295102c2a9b1b2a05dbbd5a49e3f8b9a /gnuradio-runtime/lib | |
parent | 36c7e557a63966e1b1c493ec98e547ee2ceaf5a1 (diff) |
controlport: include <algorithm> when using std::for_each()
std::for_each() is defined in <algorithm>, so that if it is not
included, it doesn't build in some platforms
Diffstat (limited to 'gnuradio-runtime/lib')
-rw-r--r-- | gnuradio-runtime/lib/controlport/rpcserver_aggregator.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnuradio-runtime/lib/controlport/rpcserver_aggregator.cc b/gnuradio-runtime/lib/controlport/rpcserver_aggregator.cc index 4cba21bce6..82527888e7 100644 --- a/gnuradio-runtime/lib/controlport/rpcserver_aggregator.cc +++ b/gnuradio-runtime/lib/controlport/rpcserver_aggregator.cc @@ -10,6 +10,7 @@ #include <gnuradio/rpcserver_aggregator.h> #include <gnuradio/rpcserver_booter_base.h> +#include <algorithm> #include <iostream> #include <sstream> #include <stdexcept> |