diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-01-09 12:34:08 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-10 19:21:38 -0800 |
commit | e0598e54b7202dfc0f37b402a2997e650c52b316 (patch) | |
tree | 3de3104b057a0173881ec00333180bd1427e9214 /gnuradio-runtime/lib/buffer.cc | |
parent | 4fd06de424850a0b70f6e8e959edcda9fe01f060 (diff) |
Fix all formatting issues
This fixes every leftover file in the GNU Radio source tree to match our
clang-format definition.
Diffstat (limited to 'gnuradio-runtime/lib/buffer.cc')
-rw-r--r-- | gnuradio-runtime/lib/buffer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/buffer.cc b/gnuradio-runtime/lib/buffer.cc index 77c761085b..13f0a8c78b 100644 --- a/gnuradio-runtime/lib/buffer.cc +++ b/gnuradio-runtime/lib/buffer.cc @@ -341,11 +341,11 @@ void buffer_reader::get_tags_in_range(std::vector<tag_t>& v, uint64_t lower_bound = abs_start - d_attr_delay; // check for underflow and if so saturate at 0 if (lower_bound > abs_start) - lower_bound = 0; + lower_bound = 0; uint64_t upper_bound = abs_end - d_attr_delay; // check for underflow and if so saturate at 0 if (upper_bound > abs_end) - upper_bound = 0; + upper_bound = 0; v.clear(); std::multimap<uint64_t, tag_t>::iterator itr = |