Fix clang-tidy

This commit is contained in:
Alexey Milovidov 2022-09-21 14:35:24 +02:00
parent f939820a9b
commit 3b6354fc62

View File

@ -983,7 +983,7 @@ private:
else if constexpr (is_decimal<U>)
dst[i] = static_cast<typename U::NativeType>(dst_default[i]);
else
dst[i] = static_cast<U>(dst_default[i]);
dst[i] = static_cast<U>(dst_default[i]); // NOLINT(bugprone-signed-char-misuse,cert-str34-c)
}
}