Brent Stapleton
|
967be2a4e8
|
uhd: mpm: apply clang-format to all files
Applying formatting changes to all .cpp and .hpp files in the following
directories:
```
find host/examples/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find host/tests/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find host/lib/usrp/dboard/neon/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find host/lib/usrp/dboard/magnesium/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find host/lib/usrp/device3/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find host/lib/usrp/mpmd/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find host/lib/usrp/x300/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find host/utils/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
find mpm/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
```
Also formatted host/include/, except Cpp03 was used as a the language
standard instead of Cpp11.
```
sed -i 's/ Cpp11/ Cpp03/g' .clang-format
find host/include/ -iname *.hpp -o -iname *.cpp | \
xargs clang-format -i -style=file
```
Formatting style was designated by the .clang-format file.
|
2019-01-16 11:40:23 -08:00 |
|
Martin Braun
|
70d8d2a7e0
|
tests: Add unit test for meta_range_t ctors
|
2018-05-09 17:10:01 -07:00 |
|
Martin Braun
|
ae5211d71d
|
uhd: Update license headers
All copyright is now attributed to "Ettus Research, a National
Instruments company".
SPDX headers were also updated to latest version 3.0.
|
2018-02-19 16:54:52 -08:00 |
|
Martin Braun
|
4f948e2c8b
|
Move all license headers to SPDX format.
|
2017-12-22 10:45:51 -08:00 |
|
Paul David
|
2c0f109835
|
Types: Added equality/inquality operators to support Boost.Python additions
- Added to subdev_spec_pair_t
- Added to range_t
- Added tests for the inequalities
|
2017-05-23 17:14:32 -07:00 |
|
Josh Blum
|
07fb8d2b82
|
usrp: fix rate calculation logic
|
2011-11-03 20:37:14 -07:00 |
|
Josh Blum
|
132e622379
|
uhd: renamed test directory to tests to be consitent
|
2011-01-14 10:50:07 -08:00 |
|