You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/templates/valddi.cpp.mako
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,18 @@ namespace ur_validation_layer
74
74
75
75
}
76
76
77
+
%for tp in tracked_params:
78
+
<%
79
+
tp_input_handle_funcs =next((hf for hf in handle_create_get_retain_release_funcs if th.subt(n, tags, tp['type']) == hf['handle'] and"[in]"in tp['desc']), {})
80
+
is_related_create_get_retain_release_func =any(func_name in funcs for funcs in tp_input_handle_funcs.values())
0 commit comments