aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/chdr_packet_writer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* lib: Remove move-on-return for chdr_packet_writerMartin Braun2021-03-111-1/+1
| | | | This is a pessimizing move, and clang warns about it.
* host: Update code base using clang-tidyMartin Braun2021-03-041-16/+16
| | | | | | | | | The checks from the new clang-tidy file are applied to the source tree using: $ find . -name "*.cpp" | sort -u | xargs \ --max-procs 8 --max-args 1 clang-tidy --format-style=file \ --fix -p /path/to/compile_commands.json
* rfnoc: Rename chdr_packet to chdr_packet_writerSamuel O'Brien2020-07-131-0/+222
It would be confusing to have two classes named chdr_packet. As it makes more sense to name the new public chdr parser class chdr_packet, the internal uhd::rfnoc::chdr::chdr_packet class is being renamed to chdr_packet_writer to better represent its functionality. Signed-off-by: Samuel O'Brien <sam.obrien@ni.com>