@@ -7,7 +7,7 @@ namespace LibGit2Sharp.Core.Handles
7
7
internal unsafe class TreeEntryHandle : Libgit2Object
8
8
{
9
9
internal TreeEntryHandle ( git_tree_entry * ptr , bool owned )
10
- : base ( ( void * ) ptr , owned )
10
+ : base ( ptr , owned )
11
11
{
12
12
}
13
13
@@ -30,7 +30,7 @@ public override void Free()
30
30
internal unsafe class ReferenceHandle : Libgit2Object
31
31
{
32
32
internal ReferenceHandle ( git_reference * ptr , bool owned )
33
- : base ( ( void * ) ptr , owned )
33
+ : base ( ptr , owned )
34
34
{
35
35
}
36
36
@@ -53,7 +53,7 @@ public override void Free()
53
53
internal unsafe class RepositoryHandle : Libgit2Object
54
54
{
55
55
internal RepositoryHandle ( git_repository * ptr , bool owned )
56
- : base ( ( void * ) ptr , owned )
56
+ : base ( ptr , owned )
57
57
{
58
58
}
59
59
@@ -76,7 +76,7 @@ public override void Free()
76
76
internal unsafe class SignatureHandle : Libgit2Object
77
77
{
78
78
internal SignatureHandle ( git_signature * ptr , bool owned )
79
- : base ( ( void * ) ptr , owned )
79
+ : base ( ptr , owned )
80
80
{
81
81
}
82
82
@@ -99,7 +99,7 @@ public override void Free()
99
99
internal unsafe class StatusListHandle : Libgit2Object
100
100
{
101
101
internal StatusListHandle ( git_status_list * ptr , bool owned )
102
- : base ( ( void * ) ptr , owned )
102
+ : base ( ptr , owned )
103
103
{
104
104
}
105
105
@@ -122,7 +122,7 @@ public override void Free()
122
122
internal unsafe class BlameHandle : Libgit2Object
123
123
{
124
124
internal BlameHandle ( git_blame * ptr , bool owned )
125
- : base ( ( void * ) ptr , owned )
125
+ : base ( ptr , owned )
126
126
{
127
127
}
128
128
@@ -145,7 +145,7 @@ public override void Free()
145
145
internal unsafe class DiffHandle : Libgit2Object
146
146
{
147
147
internal DiffHandle ( git_diff * ptr , bool owned )
148
- : base ( ( void * ) ptr , owned )
148
+ : base ( ptr , owned )
149
149
{
150
150
}
151
151
@@ -168,7 +168,7 @@ public override void Free()
168
168
internal unsafe class PatchHandle : Libgit2Object
169
169
{
170
170
internal PatchHandle ( git_patch * ptr , bool owned )
171
- : base ( ( void * ) ptr , owned )
171
+ : base ( ptr , owned )
172
172
{
173
173
}
174
174
@@ -191,7 +191,7 @@ public override void Free()
191
191
internal unsafe class ConfigurationHandle : Libgit2Object
192
192
{
193
193
internal ConfigurationHandle ( git_config * ptr , bool owned )
194
- : base ( ( void * ) ptr , owned )
194
+ : base ( ptr , owned )
195
195
{
196
196
}
197
197
@@ -214,7 +214,7 @@ public override void Free()
214
214
internal unsafe class ConflictIteratorHandle : Libgit2Object
215
215
{
216
216
internal ConflictIteratorHandle ( git_index_conflict_iterator * ptr , bool owned )
217
- : base ( ( void * ) ptr , owned )
217
+ : base ( ptr , owned )
218
218
{
219
219
}
220
220
@@ -237,7 +237,7 @@ public override void Free()
237
237
internal unsafe class IndexHandle : Libgit2Object
238
238
{
239
239
internal IndexHandle ( git_index * ptr , bool owned )
240
- : base ( ( void * ) ptr , owned )
240
+ : base ( ptr , owned )
241
241
{
242
242
}
243
243
@@ -260,7 +260,7 @@ public override void Free()
260
260
internal unsafe class ReflogHandle : Libgit2Object
261
261
{
262
262
internal ReflogHandle ( git_reflog * ptr , bool owned )
263
- : base ( ( void * ) ptr , owned )
263
+ : base ( ptr , owned )
264
264
{
265
265
}
266
266
@@ -283,7 +283,7 @@ public override void Free()
283
283
internal unsafe class TreeBuilderHandle : Libgit2Object
284
284
{
285
285
internal TreeBuilderHandle ( git_treebuilder * ptr , bool owned )
286
- : base ( ( void * ) ptr , owned )
286
+ : base ( ptr , owned )
287
287
{
288
288
}
289
289
@@ -306,7 +306,7 @@ public override void Free()
306
306
internal unsafe class PackBuilderHandle : Libgit2Object
307
307
{
308
308
internal PackBuilderHandle ( git_packbuilder * ptr , bool owned )
309
- : base ( ( void * ) ptr , owned )
309
+ : base ( ptr , owned )
310
310
{
311
311
}
312
312
@@ -329,7 +329,7 @@ public override void Free()
329
329
internal unsafe class NoteHandle : Libgit2Object
330
330
{
331
331
internal NoteHandle ( git_note * ptr , bool owned )
332
- : base ( ( void * ) ptr , owned )
332
+ : base ( ptr , owned )
333
333
{
334
334
}
335
335
@@ -352,7 +352,7 @@ public override void Free()
352
352
internal unsafe class DescribeResultHandle : Libgit2Object
353
353
{
354
354
internal DescribeResultHandle ( git_describe_result * ptr , bool owned )
355
- : base ( ( void * ) ptr , owned )
355
+ : base ( ptr , owned )
356
356
{
357
357
}
358
358
@@ -375,7 +375,7 @@ public override void Free()
375
375
internal unsafe class SubmoduleHandle : Libgit2Object
376
376
{
377
377
internal SubmoduleHandle ( git_submodule * ptr , bool owned )
378
- : base ( ( void * ) ptr , owned )
378
+ : base ( ptr , owned )
379
379
{
380
380
}
381
381
@@ -398,7 +398,7 @@ public override void Free()
398
398
internal unsafe class AnnotatedCommitHandle : Libgit2Object
399
399
{
400
400
internal AnnotatedCommitHandle ( git_annotated_commit * ptr , bool owned )
401
- : base ( ( void * ) ptr , owned )
401
+ : base ( ptr , owned )
402
402
{
403
403
}
404
404
@@ -421,7 +421,7 @@ public override void Free()
421
421
internal unsafe class ObjectDatabaseHandle : Libgit2Object
422
422
{
423
423
internal ObjectDatabaseHandle ( git_odb * ptr , bool owned )
424
- : base ( ( void * ) ptr , owned )
424
+ : base ( ptr , owned )
425
425
{
426
426
}
427
427
@@ -444,7 +444,7 @@ public override void Free()
444
444
internal unsafe class RevWalkerHandle : Libgit2Object
445
445
{
446
446
internal RevWalkerHandle ( git_revwalk * ptr , bool owned )
447
- : base ( ( void * ) ptr , owned )
447
+ : base ( ptr , owned )
448
448
{
449
449
}
450
450
@@ -467,7 +467,7 @@ public override void Free()
467
467
internal unsafe class RemoteHandle : Libgit2Object
468
468
{
469
469
internal RemoteHandle ( git_remote * ptr , bool owned )
470
- : base ( ( void * ) ptr , owned )
470
+ : base ( ptr , owned )
471
471
{
472
472
}
473
473
@@ -490,7 +490,7 @@ public override void Free()
490
490
internal unsafe class ObjectHandle : Libgit2Object
491
491
{
492
492
internal ObjectHandle ( git_object * ptr , bool owned )
493
- : base ( ( void * ) ptr , owned )
493
+ : base ( ptr , owned )
494
494
{
495
495
}
496
496
@@ -513,7 +513,7 @@ public override void Free()
513
513
internal unsafe class RebaseHandle : Libgit2Object
514
514
{
515
515
internal RebaseHandle ( git_rebase * ptr , bool owned )
516
- : base ( ( void * ) ptr , owned )
516
+ : base ( ptr , owned )
517
517
{
518
518
}
519
519
@@ -536,7 +536,7 @@ public override void Free()
536
536
internal unsafe class OdbStreamHandle : Libgit2Object
537
537
{
538
538
internal OdbStreamHandle ( git_odb_stream * ptr , bool owned )
539
- : base ( ( void * ) ptr , owned )
539
+ : base ( ptr , owned )
540
540
{
541
541
}
542
542
@@ -559,7 +559,7 @@ public override void Free()
559
559
internal unsafe class WorktreeHandle : Libgit2Object
560
560
{
561
561
internal WorktreeHandle ( git_worktree * ptr , bool owned )
562
- : base ( ( void * ) ptr , owned )
562
+ : base ( ptr , owned )
563
563
{
564
564
}
565
565
0 commit comments