From 5aad5ca37e2190644dc14bf1d5d2cf6cc99b09aa Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 5 May 2023 12:09:04 -0400 Subject: [PATCH] clang-tidy: fix `modernize-redundant-void-arg` lints --- vtkm/internal/ArrayPortalValueReference.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtkm/internal/ArrayPortalValueReference.h b/vtkm/internal/ArrayPortalValueReference.h index e7f849d31..ea6790c2f 100644 --- a/vtkm/internal/ArrayPortalValueReference.h +++ b/vtkm/internal/ArrayPortalValueReference.h @@ -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,