Remove duplicate MESSAGE macro (#5200)

* Removes duplicate macro from C++ code
* Hides global variables behind accessor functions
This commit is contained in:
Dana Robinson
2025-01-02 10:11:17 -06:00
committed by GitHub
parent be3f2995dc
commit 00adfce7a4
3 changed files with 29 additions and 14 deletions
-5
View File
@@ -28,11 +28,6 @@ using namespace H5;
using std::cerr;
using std::endl;
#define MESSAGE(V, A) \
do { \
if (GetTestVerbosity() > (V)) \
printf A; \
} while (0)
#define SUBTEST(TEST) \
do { \
printf(" Subtest: %-52s", TEST); \