Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

Commit

Permalink
Fix analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
liamappelbe committed Sep 18, 2023
1 parent 00a131b commit edde067
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/large_integration_tests/_expected_sqlite_bindings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10855,7 +10855,7 @@ final class sqlite3_vfs extends ffi.Struct {
typedef sqlite3_int64 = sqlite_int64;
typedef sqlite_int64 = ffi.LongLong;
typedef sqlite3_syscall_ptr
= ffi.Pointer<ffi.NativeFunction<sqlite3_syscall_ptr_function>;
= ffi.Pointer<ffi.NativeFunction<sqlite3_syscall_ptr_function>>;
typedef sqlite3_syscall_ptr_function = ffi.Void Function();

final class sqlite3_mem_methods extends ffi.Struct {
Expand Down Expand Up @@ -12009,8 +12009,8 @@ final class fts5_api extends ffi.Struct {
xDestroy)>> xCreateFunction;
}

typedef fts5_extension_function =
ffi.Pointer<ffi.NativeFunction<fts5_extension_function_function>>;
typedef fts5_extension_function
= ffi.Pointer<ffi.NativeFunction<fts5_extension_function_function>>;
typedef fts5_extension_function_function = ffi.Void Function(
ffi.Pointer<Fts5ExtensionApi> pApi,
ffi.Pointer<Fts5Context> pFts,
Expand Down

0 comments on commit edde067

Please sign in to comment.