From 0a534e6897c05c0a526b499f68d81dc0e9db71c9 Mon Sep 17 00:00:00 2001 From: HanishKVC Date: Sun, 28 Apr 2024 17:27:21 +0530 Subject: [PATCH] SimpCfg: Rename test program related #define --- common/simpcfg.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/simpcfg.hpp b/common/simpcfg.hpp index e17a38f12..b28839cce 100644 --- a/common/simpcfg.hpp +++ b/common/simpcfg.hpp @@ -15,8 +15,8 @@ #include #define SC_DEBUG -#define TEST_LOGIC -#ifdef TEST_LOGIC +#define SC_TEST_PRG +#ifdef SC_TEST_PRG #define LDBUG_LN(FMT, ...) printf(FMT"\n", __VA_ARGS__) #define LERRR_LN(FMT, ...) printf(FMT"\n", __VA_ARGS__) #define LWARN_LN(FMT, ...) printf(FMT"\n", __VA_ARGS__) @@ -167,7 +167,7 @@ public: }; -#ifdef TEST_LOGIC +#ifdef SC_TEST_PRG int main(int argc, char **argv) { std::string fname {argv[1]}; SimpCfg sc;