File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -250,6 +250,7 @@ public static bool Matches(IntPtr ob)
250
250
return Runtime . PyErr_ExceptionMatches ( ob ) != 0 ;
251
251
}
252
252
253
+ [ System . Diagnostics . DebuggerHidden ]
253
254
public static void ThrowIfIsNull ( IntPtr ob )
254
255
{
255
256
if ( ob == IntPtr . Zero )
@@ -258,6 +259,7 @@ public static void ThrowIfIsNull(IntPtr ob)
258
259
}
259
260
}
260
261
262
+ [ System . Diagnostics . DebuggerHidden ]
261
263
internal static void ThrowIfIsNull ( BorrowedReference reference )
262
264
{
263
265
if ( reference . IsNull )
@@ -266,6 +268,7 @@ internal static void ThrowIfIsNull(BorrowedReference reference)
266
268
}
267
269
}
268
270
271
+ [ System . Diagnostics . DebuggerHidden ]
269
272
public static void ThrowIfIsNotZero ( int value )
270
273
{
271
274
if ( value != 0 )
You can’t perform that action at this time.
0 commit comments