forked from jvdsandt/LibGit
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing correct uses of LGitCloneOptionsV140
- Loading branch information
Showing
5 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
LibGit-Core.package/LGitCloneOptionsV140.class/instance/clone_init_options.version..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
libgit - calls | ||
clone_init_options: opts version: version | ||
^ self | ||
ffiCall: #(LGitReturnCodeEnum git_clone_init_options(LGitCloneOptionsV120 *opts, LGitOptionsVersionsEnum version)) | ||
ffiCall: #(LGitReturnCodeEnum git_clone_init_options(LGitCloneOptionsV140 *opts, LGitOptionsVersionsEnum version)) | ||
options: #( ) |
2 changes: 1 addition & 1 deletion
2
LibGit-Core.package/LGitCloneOptionsV140.class/instance/prim_fetch_opts.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
libgit-fields | ||
prim_fetch_opts | ||
"This method was automatically generated" | ||
^ LGitFetchOptionsV120 fromHandle: (handle referenceStructAt: OFFSET_PRIM_FETCH_OPTS length: LGitFetchOptionsV140 byteSize) | ||
^ LGitFetchOptionsV140 fromHandle: (handle referenceStructAt: OFFSET_PRIM_FETCH_OPTS length: LGitFetchOptionsV140 byteSize) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...Core.package/LGitRemote.class/instance/remote_fetch_v140.refspecs.opts.reflog_message..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
libgit - calls | ||
remote_fetch_v140: remote refspecs: refspecs opts: opts reflog_message: reflog_message | ||
|
||
^ self | ||
ffiCallSafely: | ||
#(LGitReturnCodeEnum git_remote_fetch #(self , LGitStringArray * refspecs , LGitFetchOptionsV140 * opts , String reflog_message)) | ||
options: #(optCoerceNilToNull) |