Internals: Remove C-style cast in VPI_HANDLE (#5088)

This commit is contained in:
Todd Strader 2024-05-01 10:11:44 -04:00 committed by GitHub
parent 8fd038f88e
commit 4a41f69293
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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<PLI_BYTE8*>(TestSimulator::rooted(signal)), nullptr);