We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38660de commit 6ee7567Copy full SHA for 6ee7567
clang/test/Analysis/Checkers/WebKit/uncounted-obj-arg.mm
@@ -50,3 +50,7 @@ @interface WrapperObj : NSObject
50
static void foo(WrapperObj *configuration) {
51
configuration._protectedWebExtensionControllerConfiguration->copy();
52
}
53
+
54
+void log(RefCountable* obj) {
55
+ os_log_msg(os_log_create("WebKit", "DOM"), OS_LOG_TYPE_INFO, "obj: %p next: %p", obj, obj->next());
56
+}
0 commit comments