summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Rode <mail@andrejro.de>2018-11-03 21:24:34 +0100
committerMartin Braun <martin.braun@ettus.com>2018-11-12 14:13:46 -0800
commitcdeb4c5b632f26176c33ea2a4f84ee9db0d18b90 (patch)
treee1ec56a6ec59095fe8aec8515bfd9999aefff968
parent73cae35cfc63cc23474ce8d6196e868f21b6d3d4 (diff)
qa_buffer: remove uncesseray BOOST_CHECK for rand1 bounds
-rw-r--r--gnuradio-runtime/lib/qa_buffer.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/qa_buffer.cc b/gnuradio-runtime/lib/qa_buffer.cc
index 0d995f2084..89cb5eca59 100644
--- a/gnuradio-runtime/lib/qa_buffer.cc
+++ b/gnuradio-runtime/lib/qa_buffer.cc
@@ -256,7 +256,6 @@ t3_body()
// pick a random reader and read some
int r = (int)(N * random.ran1());
- BOOST_CHECK(0 <= r && r < N);
int m = reader[r]->items_available();
int *rp = (int*)reader[r]->read_pointer();