From afd1d47a33710d39e01195c26738bf1cd6797249 Mon Sep 17 00:00:00 2001 From: fchn289 Date: Tue, 30 Jul 2024 20:33:36 +0800 Subject: [PATCH] fix ci --- src/log/UniBaseLog.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log/UniBaseLog.hpp b/src/log/UniBaseLog.hpp index cab65d1..133b291 100644 --- a/src/log/UniBaseLog.hpp +++ b/src/log/UniBaseLog.hpp @@ -30,7 +30,7 @@ using LogName = std::string; // . under single thread, can change cout back to oneLog() for smart log // - HID() is MT safe also upon UniSmartLog #if WITH_HID_LOG -#define HID(content) { cout << "cout[" << timestamp() << "/HID] " << BUF(content) << dec; } +#define HID(content) { cout << "cout[" << timestamp() << "/HID] " << BUF(content) << std::dec; } #else #define HID(content) {} #endif