From a77c9612334a5c793855bb607537c76f73c42bc6 Mon Sep 17 00:00:00 2001 From: zhoushilin Date: Fri, 18 Feb 2022 14:25:17 +0800 Subject: [PATCH] suited to specification Signed-off-by: zhoushilin --- base/src/refbase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/refbase.cpp b/base/src/refbase.cpp index a05709e..04bc98e 100755 --- a/base/src/refbase.cpp +++ b/base/src/refbase.cpp @@ -352,7 +352,7 @@ void RefBase::DecStrongRef(const void *objectId) return; } - RefCounter *const refs = refs_; + RefCounter * const refs = refs_; const int curCount = refs->DecStrongRefCount(objectId); if (curCount == 1) { OnLastStrongRef(objectId); -- Gitee