diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-10-22 09:21:07 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-10-22 09:21:07 -0400 |
commit | beae08be99f41731899697ae9d18c9c20f8629e4 (patch) | |
tree | 52ff0446e3b6d72b7c5f7214a7792e314a7722c0 | |
parent | 3f318477ae779ff4cd46728dd223ed092c5b5b1b (diff) |
blocks: fixed use of "not" for "!".
-rw-r--r-- | gr-blocks/lib/multiply_matrix_cc_impl.cc | 2 | ||||
-rw-r--r-- | gr-blocks/lib/multiply_matrix_ff_impl.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/multiply_matrix_cc_impl.cc b/gr-blocks/lib/multiply_matrix_cc_impl.cc index 55f2262e57..eaa902ec49 100644 --- a/gr-blocks/lib/multiply_matrix_cc_impl.cc +++ b/gr-blocks/lib/multiply_matrix_cc_impl.cc @@ -170,7 +170,7 @@ namespace gr { } } - if (not set_A(new_A)) { + if (!set_A(new_A)) { GR_LOG_ALERT(d_logger, "Invalid message to set A."); } } diff --git a/gr-blocks/lib/multiply_matrix_ff_impl.cc b/gr-blocks/lib/multiply_matrix_ff_impl.cc index 808e0cefd5..fb0a6d587f 100644 --- a/gr-blocks/lib/multiply_matrix_ff_impl.cc +++ b/gr-blocks/lib/multiply_matrix_ff_impl.cc @@ -170,7 +170,7 @@ namespace gr { } } - if (not set_A(new_A)) { + if (!set_A(new_A)) { GR_LOG_ALERT(d_logger, "Invalid message to set A."); } } |