clang-tidy: fix modernize-redundant-void-arg lints

This commit is contained in:
Ben Boeckel 2023-05-05 12:09:04 -04:00
parent 6c00a87554
commit 5aad5ca37e

@ -61,7 +61,7 @@ struct ArrayPortalValueReference
VTKM_SUPPRESS_EXEC_WARNINGS
VTKM_EXEC_CONT
operator ValueType(void) const { return this->Get(); }
operator ValueType() const { return this->Get(); }
// Declaring Set as const seems a little weird because we are changing the value. But remember
// that ArrayPortalReference is only a reference class. The reference itself does not change,