From 467d8b5c98858e9f8aa230c72333693dd8545f0d Mon Sep 17 00:00:00 2001 From: chuning1988 Date: Tue, 12 Aug 2025 16:57:19 +0800 Subject: [PATCH] Delete dead code Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/ICS6LW Description: Delete dead code Signed-off-by: chuning1988 Change-Id: Id9688b1daa0cc48e0125b5f91f7588d98341d1bb --- .../codegen/maple/maple_util/include/mpl_logging.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ecmascript/compiler/codegen/maple/maple_util/include/mpl_logging.h b/ecmascript/compiler/codegen/maple/maple_util/include/mpl_logging.h index 4de056cfd4..c60ebc04ef 100644 --- a/ecmascript/compiler/codegen/maple/maple_util/include/mpl_logging.h +++ b/ecmascript/compiler/codegen/maple/maple_util/include/mpl_logging.h @@ -184,16 +184,6 @@ private: #define DBG(tag, fmt, ...) #endif // IS_RELEASE_VERSION -// #ifdef LOG -// #undef LOG -// #endif -// #define LOG(tag, fmt, ...) \ -// do { \ -// if (PRINT_LEVEL_DEV <= kLlLog) { \ -// logInfo.EmitLogForDev(tag, kLlLog, __FILE__, __FUNCTION__, __LINE__, fmt, ##__VA_ARGS__); \ -// } \ -// } while (0) - #ifdef CHECK #undef CHECK #endif -- Gitee