From 12ebb595ecd167751c179b019945fdeeff4f5d1a Mon Sep 17 00:00:00 2001 From: yangyongqiang Date: Wed, 16 Nov 2022 13:45:39 +0000 Subject: [PATCH] !727 clean code Merge pull request !727 from yangyongqiang/ge_dev --- parser/common/acl_graph_parser_util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/common/acl_graph_parser_util.h b/parser/common/acl_graph_parser_util.h index 6a0676c..04fa9cc 100644 --- a/parser/common/acl_graph_parser_util.h +++ b/parser/common/acl_graph_parser_util.h @@ -215,13 +215,13 @@ inline domi::Status CheckInt64Uint32MulOverflow(int64_t a, uint32_t b) { uint64_t endUsec_##stage = ge::parser::GetCurrentTimestamp(); \ GELOGI("[GEPERFTRACE] The time cost of %s is [%lu] micro second.", (stage_name), \ (endUsec_##stage - startUsec_##stage)); \ - } while (0); + } while (0) #define PARSER_TIMESTAMP_EVENT_END(stage, stage_name) \ do { \ uint64_t endUsec_##stage = ge::parser::GetCurrentTimestamp(); \ GEEVENT("[GEPERFTRACE] The time cost of %s is [%lu] micro second.", (stage_name), \ (endUsec_##stage - startUsec_##stage)); \ - } while (0); + } while (0) #endif // ACL_GRAPH_PARSE_UTIL_