From 4a41f692939b9c8ab9103f5eecab2f04219fae93 Mon Sep 17 00:00:00 2001 From: Todd Strader Date: Wed, 1 May 2024 10:11:44 -0400 Subject: [PATCH] Internals: Remove C-style cast in VPI_HANDLE (#5088) --- test_regress/t/TestSimulator.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_regress/t/TestSimulator.h b/test_regress/t/TestSimulator.h index 9576bfe01..a5fe6c53b 100644 --- a/test_regress/t/TestSimulator.h +++ b/test_regress/t/TestSimulator.h @@ -81,4 +81,5 @@ public: } }; -#define VPI_HANDLE(signal) vpi_handle_by_name((PLI_BYTE8*)TestSimulator::rooted(signal), NULL); +#define VPI_HANDLE(signal) \ + vpi_handle_by_name(const_cast(TestSimulator::rooted(signal)), nullptr);