diff options
author | Thomas Habets <thomas@habets.se> | 2020-04-10 10:34:20 +0100 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-04-10 21:38:42 +0200 |
commit | e30b5d796384410db1a4440c0e3692e9a59c508a (patch) | |
tree | 5b650b20f24cb84c42458cd1c46b9dda6b54fd55 /gr-analog/lib/random_uniform_source_impl.h | |
parent | 8427b6cdd8112f82ddae5815a87334708db5764e (diff) |
analog: Remove manual memory management
Diffstat (limited to 'gr-analog/lib/random_uniform_source_impl.h')
-rw-r--r-- | gr-analog/lib/random_uniform_source_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-analog/lib/random_uniform_source_impl.h b/gr-analog/lib/random_uniform_source_impl.h index d8d3aba9b5..8ebb636cce 100644 --- a/gr-analog/lib/random_uniform_source_impl.h +++ b/gr-analog/lib/random_uniform_source_impl.h @@ -22,7 +22,7 @@ template <class T> class random_uniform_source_impl : public random_uniform_source<T> { private: - gr::random* d_rng; + gr::random d_rng; public: random_uniform_source_impl(int minimum, int maximum, int seed); |