From: George Karpenkov Date: Tue, 23 Oct 2018 01:31:08 +0000 (+0000) Subject: [analyzer] [NFC] Correct comment on RetainSummaryManager X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99f26b375bf60195fed7a9b3080432dfefdbd3be;p=clang [analyzer] [NFC] Correct comment on RetainSummaryManager Differential Revision: https://reviews.llvm.org/D53548 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@344992 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h b/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h index fc506ae52e..cb16a5d079 100644 --- a/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h +++ b/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h @@ -56,7 +56,7 @@ enum ArgEffect { /// The argument has its reference count decreased by 1. This is as /// if a -release message has been sent to the argument. This differs - /// in behavior from DecRef when GC is enabled. + /// in behavior from DecRef when ARC is enabled. DecRefMsg, /// The argument has its reference count decreased by 1 to model @@ -65,7 +65,7 @@ enum ArgEffect { /// The argument has its reference count increased by 1. This is as /// if a -retain message has been sent to the argument. This differs - /// in behavior from IncRef when GC is enabled. + /// in behavior from IncRef when ARC is enabled. IncRefMsg, /// The argument has its reference count increased by 1. This is as