summaryrefslogtreecommitdiff
path: root/gr-analog/lib/random_uniform_source_impl.h
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2019-08-07 21:45:12 +0200
committerMarcus Müller <marcus@hostalia.de>2019-08-09 23:04:28 +0200
commitf7bbf2c1d8d780294f3e016aff239ca35eb6516e (patch)
treee09ab6112e02b2215b2d59ac24d3d6ea2edac745 /gr-analog/lib/random_uniform_source_impl.h
parent78431dc6941e3acc67c858277dfe4a0ed583643c (diff)
Tree: clang-format without the include sorting
Diffstat (limited to 'gr-analog/lib/random_uniform_source_impl.h')
-rw-r--r--gr-analog/lib/random_uniform_source_impl.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/gr-analog/lib/random_uniform_source_impl.h b/gr-analog/lib/random_uniform_source_impl.h
index 65e6c3ef64..19df2ad978 100644
--- a/gr-analog/lib/random_uniform_source_impl.h
+++ b/gr-analog/lib/random_uniform_source_impl.h
@@ -28,27 +28,27 @@
#include <gnuradio/random.h>
namespace gr {
- namespace analog {
+namespace analog {
-template<class T>
- class random_uniform_source_impl : public random_uniform_source<T>
- {
- private:
- gr::random *d_rng;
+template <class T>
+class random_uniform_source_impl : public random_uniform_source<T>
+{
+private:
+ gr::random* d_rng;
- public:
- random_uniform_source_impl(int minimum, int maximum, int seed);
- ~random_uniform_source_impl();
+public:
+ random_uniform_source_impl(int minimum, int maximum, int seed);
+ ~random_uniform_source_impl();
- // Where all the action really happens
- int work(int noutput_items,
- gr_vector_const_void_star &input_items,
- gr_vector_void_star &output_items);
+ // Where all the action really happens
+ int work(int noutput_items,
+ gr_vector_const_void_star& input_items,
+ gr_vector_void_star& output_items);
- int random_value();
- };
+ int random_value();
+};
- } /* namespace filter */
+} // namespace analog
} /* namespace gr */
#endif /* RANDOM_UNIFORM_SOURCE_IMPL_H */