Carles Fernandez
|
eedc3d5de6
|
clang-tidy: apply checks
|
2019-02-19 09:08:09 +01:00 |
|
Carles Fernandez
|
73b7341904
|
clang-tidy: apply readability-braces-around-statements plus code formatting
See http://releases.llvm.org/7.0.0/tools/clang/tools/extra/docs/clang-tidy/checks/readability-braces-around-statements.html
Code formatting applied with:
find ../src/ -iname *.h -o -iname *.cc | xargs clang-format -i
|
2019-02-11 21:13:02 +01:00 |
|
Carles Fernandez
|
d8eaa98e06
|
Fix building
|
2019-02-11 19:27:14 +01:00 |
|
Carles Fernandez
|
c8ae93d2b8
|
Fix building
|
2019-02-11 18:36:12 +01:00 |
|
Carles Fernandez
|
6abebac5eb
|
Make use of cstdint type names
|
2019-02-11 17:51:20 +01:00 |
|
Carles Fernandez
|
0707963ab5
|
Use cstdint type names
|
2019-02-11 17:17:35 +01:00 |
|
Carles Fernandez
|
dfc963ad86
|
clang-tidy: apply readability-else-after-return check
See https://clang.llvm.org/extra/clang-tidy/checks/readability-else-after-return.html
|
2019-02-11 15:53:50 +01:00 |
|
Carles Fernandez
|
b9c115bdf8
|
clang-tidy: apply modernize-use-using check
|
2019-02-11 13:13:06 +01:00 |
|
Carles Fernandez
|
4b2b205e21
|
Avoid throwing exceptions from destructors
Detected by clang-tidy check bugprone-exception-escape
|
2019-02-10 21:55:51 +01:00 |
|
Carles Fernandez
|
75bd492d96
|
Change CMake target names to more meaningful ones, reflecting the code tree
|
2019-02-10 18:34:28 +01:00 |
|
Carles Fernandez
|
ce051e040f
|
Improve target design
|
2019-02-10 01:13:02 +01:00 |
|
Carles Fernandez
|
e5b7eaa366
|
Reorder static dependencies
|
2019-02-07 23:07:24 +01:00 |
|
Carles Fernandez
|
60637c6125
|
Reorder dependencies
|
2019-02-07 21:31:40 +01:00 |
|
Carles Fernandez
|
dfab84b2de
|
Add fixes applied by clang-tidy
|
2019-02-05 01:31:09 +01:00 |
|
Carles Fernandez
|
708b288e61
|
Clean CMake scripts
|
2019-02-04 22:44:45 +01:00 |
|
Carles Fernandez
|
02996bbc8a
|
Add some CMake fixes
|
2019-02-04 20:00:29 +01:00 |
|
Carles Fernandez
|
f13b84c86c
|
Add more CMake modernization
|
2019-02-04 18:17:35 +01:00 |
|
Carles Fernandez
|
9b94a4dec0
|
Add more imported targets to CMake scripts
|
2019-02-04 16:07:29 +01:00 |
|
Carles Fernandez
|
9d88b03b39
|
Remove unused definition
|
2019-02-04 08:14:38 +01:00 |
|
Carles Fernandez
|
d4da5d2879
|
Add Gflags::gflags private target
|
2019-02-03 20:28:49 +01:00 |
|
Carles Fernandez
|
8ae72fe458
|
Update to modern CMake usage
|
2019-02-03 19:24:44 +01:00 |
|
Carles Fernandez
|
67f3680bf4
|
Remove lintian complaints
|
2018-12-14 14:17:04 +01:00 |
|
Carles Fernandez
|
d920aa4d92
|
Apply fixes by clang-tidy
|
2018-12-11 01:56:25 +01:00 |
|
Carles Fernandez
|
54237770a6
|
Apply fixes by clang-tidy
|
2018-12-10 22:59:10 +01:00 |
|
Carles Fernandez
|
5485afd882
|
Apply fixes by clang-tidy
|
2018-12-10 19:29:00 +01:00 |
|
Carles Fernandez
|
3dce8934fd
|
Apply fixes by clang-tidy
|
2018-12-10 19:05:12 +01:00 |
|
Carles Fernandez
|
ef201c4ccd
|
Add pmt and uhd to clang-format as external libraries
|
2018-12-10 00:18:27 +01:00 |
|
Carles Fernandez
|
5f79053d65
|
Sort includes automatically with clang-format
Order:
1.- Main header
2.- Local headers
3.- Third-party library headers
4.- System headers
each category sorted lexicographically
|
2018-12-09 22:00:09 +01:00 |
|
Carles Fernandez
|
17260bbcea
|
Miscelaneous code improvements by clang-tidy
|
2018-12-08 18:49:31 +01:00 |
|
Carles Fernandez
|
eb6ff88cec
|
clang-tidy: apply boost-use-to-string fix (see http://clang.llvm.org/extra/clang-tidy/checks/boost-use-to-string.html)
|
2018-12-03 23:34:29 +01:00 |
|
Carles Fernandez
|
327fec627c
|
clang-tidy: apply readability-else-after-return fix (see https://clang.llvm.org/extra/clang-tidy/checks/readability-else-after-return.html)
|
2018-12-03 22:08:19 +01:00 |
|
Carles Fernandez
|
1743a773b5
|
Improve performance by using const and std::move() to avoid unnecessary copies
|
2018-12-03 19:01:47 +01:00 |
|
Carles Fernandez
|
0d408a6024
|
clang-tidy: apply modernize-use-auto fix (see https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-auto.html)
|
2018-12-03 16:25:11 +01:00 |
|
Carles Fernandez
|
395f93aeff
|
clang-tidy: apply modernize-pass-by-value fix. See http://clang.llvm.org/extra/clang-tidy/checks/modernize-pass-by-value.html#modernize-pass-by-value
|
2018-12-03 15:43:43 +01:00 |
|
Carles Fernandez
|
8eec75c8ae
|
clang-tidy: apply readability-string-compare fix (see https://clang.llvm.org/extra/clang-tidy/checks/readability-string-compare.html)
|
2018-12-03 12:52:17 +01:00 |
|
Carles Fernandez
|
96f34cabb1
|
clang-tidy: apply modernize-use-equals-default fix. See https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-equals-default.html
|
2018-12-03 11:12:10 +01:00 |
|
Carles Fernandez
|
5f01161af6
|
Fix building
|
2018-12-02 12:24:44 +01:00 |
|
Carles Fernandez
|
1ed73eb2f8
|
Fix building
|
2018-12-02 12:11:59 +01:00 |
|
Carles Fernandez
|
3bb47ff755
|
Improve const correctness, fix string comparisons
|
2018-12-02 05:29:11 +01:00 |
|
Javier Arribas
|
1302614613
|
Improving SPIR GSS6450 signal source
|
2018-11-29 17:53:01 +01:00 |
|
Carles Fernandez
|
af8d93af1a
|
Remove unused variable
|
2018-11-24 18:41:36 +01:00 |
|
Carles Fernandez
|
87d1413447
|
Make cmakelint happier
|
2018-11-24 18:40:34 +01:00 |
|
Carles Fernandez
|
b0ba246934
|
Apply some style rules to CMake scripts
|
2018-11-22 00:35:21 +01:00 |
|
Carles Fernandez
|
73ece1e533
|
Uniformize style of CMake modules
|
2018-11-21 08:28:50 +01:00 |
|
Carles Fernandez
|
e94b2f8990
|
Remove blanks
|
2018-11-18 21:24:54 +01:00 |
|
Javier
|
57a01809cb
|
Improving spir signal source
|
2018-11-11 20:25:14 +01:00 |
|
Carles Fernandez
|
78c0b76cb9
|
Avoid use of GLOB for source and header files
|
2018-10-04 22:35:44 +02:00 |
|
Carles Fernandez
|
b2db6abdaa
|
Add more extensive use of cstdint typenames
|
2018-08-11 14:31:35 +02:00 |
|
Javier Arribas
|
752b4396d0
|
Fix inverted spectrum in unpack gss6450 block
|
2018-08-01 12:13:54 +02:00 |
|
Carles Fernandez
|
73aa89dfc6
|
Fix creation of acquisition blocks, fix warning of unused private member
|
2018-06-03 22:43:53 +02:00 |
|