@@ -7,7 +7,7 @@ namespace LibGit2Sharp.Core.Handles
77 internal unsafe class TreeEntryHandle : Libgit2Object
88 {
99 internal TreeEntryHandle ( git_tree_entry * ptr , bool owned )
10- : base ( ( void * ) ptr , owned )
10+ : base ( ptr , owned )
1111 {
1212 }
1313
@@ -30,7 +30,7 @@ public override void Free()
3030 internal unsafe class ReferenceHandle : Libgit2Object
3131 {
3232 internal ReferenceHandle ( git_reference * ptr , bool owned )
33- : base ( ( void * ) ptr , owned )
33+ : base ( ptr , owned )
3434 {
3535 }
3636
@@ -53,7 +53,7 @@ public override void Free()
5353 internal unsafe class RepositoryHandle : Libgit2Object
5454 {
5555 internal RepositoryHandle ( git_repository * ptr , bool owned )
56- : base ( ( void * ) ptr , owned )
56+ : base ( ptr , owned )
5757 {
5858 }
5959
@@ -76,7 +76,7 @@ public override void Free()
7676 internal unsafe class SignatureHandle : Libgit2Object
7777 {
7878 internal SignatureHandle ( git_signature * ptr , bool owned )
79- : base ( ( void * ) ptr , owned )
79+ : base ( ptr , owned )
8080 {
8181 }
8282
@@ -99,7 +99,7 @@ public override void Free()
9999 internal unsafe class StatusListHandle : Libgit2Object
100100 {
101101 internal StatusListHandle ( git_status_list * ptr , bool owned )
102- : base ( ( void * ) ptr , owned )
102+ : base ( ptr , owned )
103103 {
104104 }
105105
@@ -122,7 +122,7 @@ public override void Free()
122122 internal unsafe class BlameHandle : Libgit2Object
123123 {
124124 internal BlameHandle ( git_blame * ptr , bool owned )
125- : base ( ( void * ) ptr , owned )
125+ : base ( ptr , owned )
126126 {
127127 }
128128
@@ -145,7 +145,7 @@ public override void Free()
145145 internal unsafe class DiffHandle : Libgit2Object
146146 {
147147 internal DiffHandle ( git_diff * ptr , bool owned )
148- : base ( ( void * ) ptr , owned )
148+ : base ( ptr , owned )
149149 {
150150 }
151151
@@ -168,7 +168,7 @@ public override void Free()
168168 internal unsafe class PatchHandle : Libgit2Object
169169 {
170170 internal PatchHandle ( git_patch * ptr , bool owned )
171- : base ( ( void * ) ptr , owned )
171+ : base ( ptr , owned )
172172 {
173173 }
174174
@@ -191,7 +191,7 @@ public override void Free()
191191 internal unsafe class ConfigurationHandle : Libgit2Object
192192 {
193193 internal ConfigurationHandle ( git_config * ptr , bool owned )
194- : base ( ( void * ) ptr , owned )
194+ : base ( ptr , owned )
195195 {
196196 }
197197
@@ -214,7 +214,7 @@ public override void Free()
214214 internal unsafe class ConflictIteratorHandle : Libgit2Object
215215 {
216216 internal ConflictIteratorHandle ( git_index_conflict_iterator * ptr , bool owned )
217- : base ( ( void * ) ptr , owned )
217+ : base ( ptr , owned )
218218 {
219219 }
220220
@@ -237,7 +237,7 @@ public override void Free()
237237 internal unsafe class IndexHandle : Libgit2Object
238238 {
239239 internal IndexHandle ( git_index * ptr , bool owned )
240- : base ( ( void * ) ptr , owned )
240+ : base ( ptr , owned )
241241 {
242242 }
243243
@@ -260,7 +260,7 @@ public override void Free()
260260 internal unsafe class ReflogHandle : Libgit2Object
261261 {
262262 internal ReflogHandle ( git_reflog * ptr , bool owned )
263- : base ( ( void * ) ptr , owned )
263+ : base ( ptr , owned )
264264 {
265265 }
266266
@@ -283,7 +283,7 @@ public override void Free()
283283 internal unsafe class TreeBuilderHandle : Libgit2Object
284284 {
285285 internal TreeBuilderHandle ( git_treebuilder * ptr , bool owned )
286- : base ( ( void * ) ptr , owned )
286+ : base ( ptr , owned )
287287 {
288288 }
289289
@@ -306,7 +306,7 @@ public override void Free()
306306 internal unsafe class PackBuilderHandle : Libgit2Object
307307 {
308308 internal PackBuilderHandle ( git_packbuilder * ptr , bool owned )
309- : base ( ( void * ) ptr , owned )
309+ : base ( ptr , owned )
310310 {
311311 }
312312
@@ -329,7 +329,7 @@ public override void Free()
329329 internal unsafe class NoteHandle : Libgit2Object
330330 {
331331 internal NoteHandle ( git_note * ptr , bool owned )
332- : base ( ( void * ) ptr , owned )
332+ : base ( ptr , owned )
333333 {
334334 }
335335
@@ -352,7 +352,7 @@ public override void Free()
352352 internal unsafe class DescribeResultHandle : Libgit2Object
353353 {
354354 internal DescribeResultHandle ( git_describe_result * ptr , bool owned )
355- : base ( ( void * ) ptr , owned )
355+ : base ( ptr , owned )
356356 {
357357 }
358358
@@ -375,7 +375,7 @@ public override void Free()
375375 internal unsafe class SubmoduleHandle : Libgit2Object
376376 {
377377 internal SubmoduleHandle ( git_submodule * ptr , bool owned )
378- : base ( ( void * ) ptr , owned )
378+ : base ( ptr , owned )
379379 {
380380 }
381381
@@ -398,7 +398,7 @@ public override void Free()
398398 internal unsafe class AnnotatedCommitHandle : Libgit2Object
399399 {
400400 internal AnnotatedCommitHandle ( git_annotated_commit * ptr , bool owned )
401- : base ( ( void * ) ptr , owned )
401+ : base ( ptr , owned )
402402 {
403403 }
404404
@@ -421,7 +421,7 @@ public override void Free()
421421 internal unsafe class ObjectDatabaseHandle : Libgit2Object
422422 {
423423 internal ObjectDatabaseHandle ( git_odb * ptr , bool owned )
424- : base ( ( void * ) ptr , owned )
424+ : base ( ptr , owned )
425425 {
426426 }
427427
@@ -444,7 +444,7 @@ public override void Free()
444444 internal unsafe class RevWalkerHandle : Libgit2Object
445445 {
446446 internal RevWalkerHandle ( git_revwalk * ptr , bool owned )
447- : base ( ( void * ) ptr , owned )
447+ : base ( ptr , owned )
448448 {
449449 }
450450
@@ -467,7 +467,7 @@ public override void Free()
467467 internal unsafe class RemoteHandle : Libgit2Object
468468 {
469469 internal RemoteHandle ( git_remote * ptr , bool owned )
470- : base ( ( void * ) ptr , owned )
470+ : base ( ptr , owned )
471471 {
472472 }
473473
@@ -490,7 +490,7 @@ public override void Free()
490490 internal unsafe class ObjectHandle : Libgit2Object
491491 {
492492 internal ObjectHandle ( git_object * ptr , bool owned )
493- : base ( ( void * ) ptr , owned )
493+ : base ( ptr , owned )
494494 {
495495 }
496496
@@ -513,7 +513,7 @@ public override void Free()
513513 internal unsafe class RebaseHandle : Libgit2Object
514514 {
515515 internal RebaseHandle ( git_rebase * ptr , bool owned )
516- : base ( ( void * ) ptr , owned )
516+ : base ( ptr , owned )
517517 {
518518 }
519519
@@ -536,7 +536,7 @@ public override void Free()
536536 internal unsafe class OdbStreamHandle : Libgit2Object
537537 {
538538 internal OdbStreamHandle ( git_odb_stream * ptr , bool owned )
539- : base ( ( void * ) ptr , owned )
539+ : base ( ptr , owned )
540540 {
541541 }
542542
@@ -559,7 +559,7 @@ public override void Free()
559559 internal unsafe class WorktreeHandle : Libgit2Object
560560 {
561561 internal WorktreeHandle ( git_worktree * ptr , bool owned )
562- : base ( ( void * ) ptr , owned )
562+ : base ( ptr , owned )
563563 {
564564 }
565565
0 commit comments