From 258a710d294bb9592f4191351052182b4659bbee Mon Sep 17 00:00:00 2001 From: zhusiyuan Date: Sun, 5 Mar 2023 19:10:44 +0800 Subject: [PATCH] Feat: add trace support to display module Signed-off-by: zhusiyuan --- base/hdf_trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/hdf_trace.h b/base/hdf_trace.h index 9c979763ed..3bc1f6f20d 100644 --- a/base/hdf_trace.h +++ b/base/hdf_trace.h @@ -24,7 +24,7 @@ public: { StartTrace(HITRACE_TAG_HDF, prefix + value); } - inline End() const + inline void End() const { FinishTrace(HITRACE_TAG_HDF); } -- Gitee