================
@@ -27,6 +27,11 @@ namespace clang::lifetimes {
 inline bool IsLifetimeSafetyEnabled(Sema &S, const Decl *D) {
   if (S.getLangOpts().DebugRunLifetimeSafety)
     return true;
+  // TODO: Enable ObjectiveC later when we know it's stable enough.
+  if (S.getLangOpts().ObjC)
+    return false;
----------------
usx95 wrote:

Please add some form of comments preferably the suggested text.

https://github.com/llvm/llvm-project/pull/203270
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to