clang-tidy: fix readability-redundant-member-init lints

This commit is contained in:
Ben Boeckel 2023-05-05 12:05:33 -04:00
parent 97e0024daf
commit 13e935c357
2 changed files with 2 additions and 8 deletions

@ -154,10 +154,7 @@ struct GetTypeInParentheses<void(T)>
VTKM_IS_ARRAY_HANDLE(Superclass); \
\
VTKM_CONT \
classname() \
: Superclass() \
{ \
} \
classname() {} \
\
VTKM_CONT \
classname(const Thisclass& src) \

@ -31,10 +31,7 @@ class VTKM_ALWAYS_EXPORT FunctorBase
{
public:
VTKM_EXEC_CONT
FunctorBase()
: ErrorMessage()
{
}
FunctorBase() {}
VTKM_EXEC
void RaiseError(const char* message) const { this->ErrorMessage.RaiseError(message); }