File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -1561,7 +1561,6 @@ pub struct git_merge_file_options {
15611561}
15621562
15631563#[ repr( C ) ]
1564- #[ derive( Copy , Clone ) ]
15651564pub struct git_merge_file_input {
15661565 pub version : c_uint ,
15671566 pub ptr : * const c_char ,
Original file line number Diff line number Diff line change @@ -428,12 +428,8 @@ impl Default for MergeFileInput<'_> {
428428impl Binding for MergeFileInput < ' _ > {
429429 type Raw = * const raw:: git_merge_file_input ;
430430
431- unsafe fn from_raw ( raw : * const raw:: git_merge_file_input ) -> MergeFileInput < ' static > {
432- MergeFileInput {
433- raw : * raw,
434- path : None ,
435- content : None ,
436- }
431+ unsafe fn from_raw ( _raw : * const raw:: git_merge_file_input ) -> MergeFileInput < ' static > {
432+ panic ! ( "unimplemened" )
437433 }
438434
439435 fn raw ( & self ) -> * const raw:: git_merge_file_input {
You can’t perform that action at this time.
0 commit comments