@@ -25,7 +25,7 @@ protected override bool ReleaseHandle()
25
25
26
26
public static implicit operator git_tree_entry * ( TreeEntryHandle handle )
27
27
{
28
- return ( git_tree_entry * ) handle . AsIntPtr ( ) ;
28
+ return ( git_tree_entry * ) handle . DangerousGetHandle ( ) ;
29
29
}
30
30
}
31
31
@@ -50,7 +50,7 @@ protected override bool ReleaseHandle()
50
50
51
51
public static implicit operator git_reference * ( ReferenceHandle handle )
52
52
{
53
- return ( git_reference * ) handle . AsIntPtr ( ) ;
53
+ return ( git_reference * ) handle . DangerousGetHandle ( ) ;
54
54
}
55
55
}
56
56
@@ -75,7 +75,7 @@ protected override bool ReleaseHandle()
75
75
76
76
public static implicit operator git_repository * ( RepositoryHandle handle )
77
77
{
78
- return ( git_repository * ) handle . AsIntPtr ( ) ;
78
+ return ( git_repository * ) handle . DangerousGetHandle ( ) ;
79
79
}
80
80
}
81
81
@@ -100,7 +100,7 @@ protected override bool ReleaseHandle()
100
100
101
101
public static implicit operator git_signature * ( SignatureHandle handle )
102
102
{
103
- return ( git_signature * ) handle . AsIntPtr ( ) ;
103
+ return ( git_signature * ) handle . DangerousGetHandle ( ) ;
104
104
}
105
105
}
106
106
@@ -125,7 +125,7 @@ protected override bool ReleaseHandle()
125
125
126
126
public static implicit operator git_status_list * ( StatusListHandle handle )
127
127
{
128
- return ( git_status_list * ) handle . AsIntPtr ( ) ;
128
+ return ( git_status_list * ) handle . DangerousGetHandle ( ) ;
129
129
}
130
130
}
131
131
@@ -150,7 +150,7 @@ protected override bool ReleaseHandle()
150
150
151
151
public static implicit operator git_blame * ( BlameHandle handle )
152
152
{
153
- return ( git_blame * ) handle . AsIntPtr ( ) ;
153
+ return ( git_blame * ) handle . DangerousGetHandle ( ) ;
154
154
}
155
155
}
156
156
@@ -175,7 +175,7 @@ protected override bool ReleaseHandle()
175
175
176
176
public static implicit operator git_diff * ( DiffHandle handle )
177
177
{
178
- return ( git_diff * ) handle . AsIntPtr ( ) ;
178
+ return ( git_diff * ) handle . DangerousGetHandle ( ) ;
179
179
}
180
180
}
181
181
@@ -200,7 +200,7 @@ protected override bool ReleaseHandle()
200
200
201
201
public static implicit operator git_patch * ( PatchHandle handle )
202
202
{
203
- return ( git_patch * ) handle . AsIntPtr ( ) ;
203
+ return ( git_patch * ) handle . DangerousGetHandle ( ) ;
204
204
}
205
205
}
206
206
@@ -225,7 +225,7 @@ protected override bool ReleaseHandle()
225
225
226
226
public static implicit operator git_config * ( ConfigurationHandle handle )
227
227
{
228
- return ( git_config * ) handle . AsIntPtr ( ) ;
228
+ return ( git_config * ) handle . DangerousGetHandle ( ) ;
229
229
}
230
230
}
231
231
@@ -250,7 +250,7 @@ protected override bool ReleaseHandle()
250
250
251
251
public static implicit operator git_index_conflict_iterator * ( ConflictIteratorHandle handle )
252
252
{
253
- return ( git_index_conflict_iterator * ) handle . AsIntPtr ( ) ;
253
+ return ( git_index_conflict_iterator * ) handle . DangerousGetHandle ( ) ;
254
254
}
255
255
}
256
256
@@ -275,7 +275,7 @@ protected override bool ReleaseHandle()
275
275
276
276
public static implicit operator git_index * ( IndexHandle handle )
277
277
{
278
- return ( git_index * ) handle . AsIntPtr ( ) ;
278
+ return ( git_index * ) handle . DangerousGetHandle ( ) ;
279
279
}
280
280
}
281
281
@@ -300,7 +300,7 @@ protected override bool ReleaseHandle()
300
300
301
301
public static implicit operator git_reflog * ( ReflogHandle handle )
302
302
{
303
- return ( git_reflog * ) handle . AsIntPtr ( ) ;
303
+ return ( git_reflog * ) handle . DangerousGetHandle ( ) ;
304
304
}
305
305
}
306
306
@@ -325,7 +325,7 @@ protected override bool ReleaseHandle()
325
325
326
326
public static implicit operator git_treebuilder * ( TreeBuilderHandle handle )
327
327
{
328
- return ( git_treebuilder * ) handle . AsIntPtr ( ) ;
328
+ return ( git_treebuilder * ) handle . DangerousGetHandle ( ) ;
329
329
}
330
330
}
331
331
@@ -350,7 +350,7 @@ protected override bool ReleaseHandle()
350
350
351
351
public static implicit operator git_packbuilder * ( PackBuilderHandle handle )
352
352
{
353
- return ( git_packbuilder * ) handle . AsIntPtr ( ) ;
353
+ return ( git_packbuilder * ) handle . DangerousGetHandle ( ) ;
354
354
}
355
355
}
356
356
@@ -375,7 +375,7 @@ protected override bool ReleaseHandle()
375
375
376
376
public static implicit operator git_note * ( NoteHandle handle )
377
377
{
378
- return ( git_note * ) handle . AsIntPtr ( ) ;
378
+ return ( git_note * ) handle . DangerousGetHandle ( ) ;
379
379
}
380
380
}
381
381
@@ -400,7 +400,7 @@ protected override bool ReleaseHandle()
400
400
401
401
public static implicit operator git_describe_result * ( DescribeResultHandle handle )
402
402
{
403
- return ( git_describe_result * ) handle . AsIntPtr ( ) ;
403
+ return ( git_describe_result * ) handle . DangerousGetHandle ( ) ;
404
404
}
405
405
}
406
406
@@ -425,7 +425,7 @@ protected override bool ReleaseHandle()
425
425
426
426
public static implicit operator git_submodule * ( SubmoduleHandle handle )
427
427
{
428
- return ( git_submodule * ) handle . AsIntPtr ( ) ;
428
+ return ( git_submodule * ) handle . DangerousGetHandle ( ) ;
429
429
}
430
430
}
431
431
@@ -450,7 +450,7 @@ protected override bool ReleaseHandle()
450
450
451
451
public static implicit operator git_annotated_commit * ( AnnotatedCommitHandle handle )
452
452
{
453
- return ( git_annotated_commit * ) handle . AsIntPtr ( ) ;
453
+ return ( git_annotated_commit * ) handle . DangerousGetHandle ( ) ;
454
454
}
455
455
}
456
456
@@ -475,7 +475,7 @@ protected override bool ReleaseHandle()
475
475
476
476
public static implicit operator git_odb * ( ObjectDatabaseHandle handle )
477
477
{
478
- return ( git_odb * ) handle . AsIntPtr ( ) ;
478
+ return ( git_odb * ) handle . DangerousGetHandle ( ) ;
479
479
}
480
480
}
481
481
@@ -500,7 +500,7 @@ protected override bool ReleaseHandle()
500
500
501
501
public static implicit operator git_revwalk * ( RevWalkerHandle handle )
502
502
{
503
- return ( git_revwalk * ) handle . AsIntPtr ( ) ;
503
+ return ( git_revwalk * ) handle . DangerousGetHandle ( ) ;
504
504
}
505
505
}
506
506
@@ -525,7 +525,7 @@ protected override bool ReleaseHandle()
525
525
526
526
public static implicit operator git_remote * ( RemoteHandle handle )
527
527
{
528
- return ( git_remote * ) handle . AsIntPtr ( ) ;
528
+ return ( git_remote * ) handle . DangerousGetHandle ( ) ;
529
529
}
530
530
}
531
531
@@ -550,7 +550,7 @@ protected override bool ReleaseHandle()
550
550
551
551
public static implicit operator git_object * ( ObjectHandle handle )
552
552
{
553
- return ( git_object * ) handle . AsIntPtr ( ) ;
553
+ return ( git_object * ) handle . DangerousGetHandle ( ) ;
554
554
}
555
555
}
556
556
@@ -575,7 +575,7 @@ protected override bool ReleaseHandle()
575
575
576
576
public static implicit operator git_rebase * ( RebaseHandle handle )
577
577
{
578
- return ( git_rebase * ) handle . AsIntPtr ( ) ;
578
+ return ( git_rebase * ) handle . DangerousGetHandle ( ) ;
579
579
}
580
580
}
581
581
@@ -600,7 +600,7 @@ protected override bool ReleaseHandle()
600
600
601
601
public static implicit operator git_odb_stream * ( OdbStreamHandle handle )
602
602
{
603
- return ( git_odb_stream * ) handle . AsIntPtr ( ) ;
603
+ return ( git_odb_stream * ) handle . DangerousGetHandle ( ) ;
604
604
}
605
605
}
606
606
@@ -625,7 +625,7 @@ protected override bool ReleaseHandle()
625
625
626
626
public static implicit operator git_worktree * ( WorktreeHandle handle )
627
627
{
628
- return ( git_worktree * ) handle . AsIntPtr ( ) ;
628
+ return ( git_worktree * ) handle . DangerousGetHandle ( ) ;
629
629
}
630
630
}
631
631
0 commit comments