diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-24 12:23:58 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-02-27 19:57:54 -0800 |
commit | aedfa8ec254f1def125167a77a50bb0eec4ab00c (patch) | |
tree | 991b333feb80126b954870002dda20e4d34e444c /gnuradio-core/src | |
parent | a02bb131f68d5aa66093310c393562671e389778 (diff) |
gr_flowgraph.cc explicit include of <iterator>
Added explicit include of <iterator>,
which was implicitly included by <vector>.
Affects platforms where vector does not automatically pull in iterator.
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_flowgraph.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_flowgraph.cc b/gnuradio-core/src/lib/runtime/gr_flowgraph.cc index 27f6257cc5..0d3bbb0119 100644 --- a/gnuradio-core/src/lib/runtime/gr_flowgraph.cc +++ b/gnuradio-core/src/lib/runtime/gr_flowgraph.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2007 Free Software Foundation, Inc. + * Copyright 2007,2011 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -28,6 +28,7 @@ #include <gr_io_signature.h> #include <stdexcept> #include <sstream> +#include <iterator> #define GR_FLOWGRAPH_DEBUG 0 |