Fix new (after upgrade) clang-tidy error, adjust .codespell-ignorelines accordingly.

This commit is contained in:
Ralf W. Grosse-Kunstleve
2022-07-21 08:15:53 -07:00
parent e32f73bf3e
commit 8f31c19e99
2 changed files with 2 additions and 6 deletions

View File

@@ -15,10 +15,7 @@ namespace helpers {
struct movable_int {
int valu;
explicit movable_int(int v) : valu{v} {}
movable_int(movable_int &&other) noexcept {
valu = other.valu;
other.valu = 91;
}
movable_int(movable_int &&other) noexcept : valu(other.valu) { other.valu = 91; }
};
template <typename T>