From b085cde3587614838f63775e761ed6d6be12f7ab Mon Sep 17 00:00:00 2001 From: Kenneth Moreland Date: Mon, 25 Jan 2021 10:32:09 -0700 Subject: [PATCH] Fix runaway deprecation suppression Field.h had a runaway deprecation suppression where the pragmas to suppress deprecation warnings were turned on but not properly turned off. This caused deprecation warnings to be turned off for anything including Field.h (directly or indirectly), and consequently lots of use of deprecated features went unnoticed. --- vtkm/cont/Field.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtkm/cont/Field.h b/vtkm/cont/Field.h index 063f7561e..e3a088906 100644 --- a/vtkm/cont/Field.h +++ b/vtkm/cont/Field.h @@ -328,7 +328,7 @@ public: Serialization::load(bb, serializable.Field); } }; -VTKM_DEPRECATED_SUPPRESS_BEGIN +VTKM_DEPRECATED_SUPPRESS_END } // diy /// @endcond SERIALIZATION