one more batch of clang-tidy fixes

This commit is contained in:
Axel Kohlmeyer
2022-05-13 23:21:14 -04:00
parent 940e88d2ca
commit 90797d53d9
15 changed files with 62 additions and 62 deletions

View File

@ -323,12 +323,12 @@ void ComputeCentroAtom::compute_peratom()
#define SWAP(a, b) \
tmp = a; \
a = b; \
b = tmp;
(a) = b; \
(b) = tmp;
#define ISWAP(a, b) \
itmp = a; \
a = b; \
b = itmp;
(a) = b; \
(b) = itmp;
void ComputeCentroAtom::select(int k, int n, double *arr)
{