Fix 'unused parameter' warnings in C++ tests (#5199)

This commit is contained in:
Dana Robinson
2025-01-02 10:09:46 -08:00
committed by GitHub
parent 00adfce7a4
commit ed082ac981
14 changed files with 58 additions and 11 deletions
+4
View File
@@ -479,6 +479,8 @@ test_array_info()
extern "C" void
test_array(const void *params)
{
(void)params;
// Output message about test being performed
MESSAGE(5, ("Testing Array Datatypes\n"));
@@ -504,6 +506,8 @@ test_array(const void *params)
extern "C" void
cleanup_array(void *params)
{
(void)params;
if (GetTestCleanup()) {
HDremove(FILENAME.c_str());
}