Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Switch from boost pointers to std C++11 pointers | Thomas Habets | 2020-04-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | Most of this code is automated code changes: ``` set -e SUB="s/dummy/dummy/" for i in shared_ptr make_shared dynamic_pointer_cast weak_ptr enable_shared_from_this get_deleter; do SUB="$SUB;s/boost::$i/std::$i/g" done SUB="$SUB;s^#include <boost/shared_ptr.hpp>^#include <memory>^g" SUB="$SUB;s^namespace boost^namespace std^g" find . \( -name "*.cc" -o -name "*.h" -o -name "*.i" -o -name "*.cxx" -o -name "*.py" \) -print0 | xargs -0 sed -i "$SUB" ``` Only one manual change. In `./gr-fec/lib/fec_mtrx_impl.cc`, add `#include <algorithm>`. | ||||
* | Update license header to SPDX format | devnulling | 2020-01-27 | 1 | -13/+1 |
| | |||||
* | Tree: clang-format without the include sorting | Marcus Müller | 2019-08-09 | 1 | -67/+69 |
| | |||||
* | gr-analog: sig source byte support mode, added qa tests #1994 | Eral Tuerkyilmaz | 2019-04-19 | 1 | -0/+1 |
| | |||||
* | analog: Fix Doxygen warnings | Martin Braun | 2018-12-12 | 1 | -1/+2 |
| | | | | | - sig_source: Fix undocumented parameter 'phase' - random_uniform_source: Fix Doxygen warning regarding \TYPE | ||||
* | analog: sig_source: Add phase parameter | Adrian Suciu | 2018-11-15 | 1 | -1/+32 |
| | | | | | | | Note: This does not include GRC bindings. Signed-off-by: Adrian Suciu <adrian.suciu@analog.com> Signed-off-by: Martin Braun <martin.braun@ettus.com> | ||||
* | analog: replace gengen with C++ templates | Andrej Rode | 2018-08-25 | 1 | -0/+79 |