mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-04 12:19:09 -04:00
fix: bindings formatting
This commit is contained in:
parent
451b439eca
commit
7ac9937fcf
1 changed files with 6 additions and 5 deletions
|
@ -2488,11 +2488,12 @@ class Libgit2 {
|
|||
);
|
||||
}
|
||||
|
||||
late final _git_libgit2_optsPtr =
|
||||
_lookup<ffi.NativeFunction<ffi.Int32 Function(ffi.Int32, ffi.Pointer<ffi.Int8>)>>(
|
||||
'git_libgit2_opts');
|
||||
late final _git_libgit2_opts =
|
||||
_git_libgit2_optsPtr.asFunction<int Function(int, ffi.Pointer<ffi.Int8>)>();
|
||||
late final _git_libgit2_optsPtr = _lookup<
|
||||
ffi.NativeFunction<
|
||||
ffi.Int32 Function(
|
||||
ffi.Int32, ffi.Pointer<ffi.Int8>)>>('git_libgit2_opts');
|
||||
late final _git_libgit2_opts = _git_libgit2_optsPtr
|
||||
.asFunction<int Function(int, ffi.Pointer<ffi.Int8>)>();
|
||||
|
||||
/// Set a library global option.
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue