summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/selector_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* clang-tidy: run full .clang-tidy on C++17 codebaseMarcus Müller2021-01-191-1/+1
| | | | | | | | | | | | | | | | | | | | run /usr/share/clang/run-clang-tidy.py -checks=file '-header-filter=.*' -fix .. from build directory. Then, clang-format -i $(git diff --name-only origin/master) to clang-format changed files. Then, refresh all header hashes in pybind bindings (*/python/bindings/*.cc) Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* blocks: selector: update to only forecast active inputmormj2020-09-141-1/+2
|
* blocks: align output tags in selector blockmormj2020-09-091-0/+14
|
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-2/+1
| | | | | | | | | | | | | | First batch of changes: ``` find […] -print0 | xargs -0 sed -i -r '/get_initial_sptr/{:nxt N;/;/!b nxt;s/get_initial_sptr\(\s*new ([^(]+)(.*)\)\)/make_block_sptr<\1>\2)/}' ``` Then: * Back out `sptr_magic.h` edits * Change some `friend` clauses * clang-format the whole thing * Update checksums in the pybind11 bindings files
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Added in/out selector msg portsghostop142020-01-241-1/+44
| | | | Input and output port selection can now be controlled by messages.
* blocks: replace blks2_selector with new implementationJosh Morman2019-06-151-0/+143
blks2_selector was deprecated and finally removed This block implements the same functionality but in a way more similar to the Copy block fixes #2460