diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2021-07-17 15:17:07 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-08-02 07:02:37 -0400 |
commit | 60580c0f485aa6790bc8d19c5d76bd3fc0e3d0cc (patch) | |
tree | 92a7f2f7c6fa55b2911ee314fdd4796e51d83545 /gr-iio/lib/dds_control_impl.cc | |
parent | 001a949262436cc42d06976f6ba9b48ec8ad607d (diff) |
iio: Remove struct specifier (not necessary in C++, clutters a bit)
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gr-iio/lib/dds_control_impl.cc')
-rw-r--r-- | gr-iio/lib/dds_control_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-iio/lib/dds_control_impl.cc b/gr-iio/lib/dds_control_impl.cc index 8608ca15ad..3d0defd179 100644 --- a/gr-iio/lib/dds_control_impl.cc +++ b/gr-iio/lib/dds_control_impl.cc @@ -51,14 +51,14 @@ dds_control_impl::dds_control_impl(const std::string& uri, { int k, chans; unsigned int ku = 0, count = 0; - struct iio_channel* chan; + iio_channel* chan; d_ctx = device_source_impl::get_context(uri); if (!d_ctx) throw std::runtime_error("Unable to create context"); int d = iio_context_get_devices_count(d_ctx); - struct iio_device* dev; + iio_device* dev; const char* name; // Find dds device for (k = 0; k < d; k++) { @@ -95,7 +95,7 @@ void dds_control_impl::set_dds_confg(std::vector<long> frequencies, { int ret, chans, k, dds_indx = 0, enable_indx = 0, enable = 0; unsigned int ku; - struct iio_channel* chan; + iio_channel* chan; // Check vector sizes if ((frequencies.size() != phases.size()) || (phases.size() != scales.size())) |