Skip to content

Commit

Permalink
dart pub upgrade && dart pub upgrade --major-versions (#605)
Browse files Browse the repository at this point in the history
Co-authored-by: sensuikan1973 <[email protected]>
  • Loading branch information
sensuikan1973 and sensuikan1973 authored Aug 17, 2024
1 parent 8c051f5 commit d170a93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions lib/src/ffi/bindings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1553,11 +1553,11 @@ class LibEdaxBindings {
ffi.Pointer<ffi.NativeFunction<ffi.LongLong Function()>> value) =>
_time_clock.value = value;

late final ffi.Pointer<ffi.Long> _timezone = _lookup<ffi.Long>('timezone');
late final ffi.Pointer<ffi.Long> _timezone1 = _lookup<ffi.Long>('timezone');

int get timezone => _timezone.value;
int get timezone1 => _timezone1.value;

set timezone(int value) => _timezone.value = value;
set timezone1(int value) => _timezone1.value = value;

late final ffi.Pointer<ffi.Pointer<ffi.Pointer<ffi.Char>>> _tzname =
_lookup<ffi.Pointer<ffi.Pointer<ffi.Char>>>('tzname');
Expand Down Expand Up @@ -9948,7 +9948,7 @@ final class timeval64 extends ffi.Struct {
external int tv_usec;
}

final class timezone1 extends ffi.Struct {
final class timezone extends ffi.Struct {
@ffi.Int()
external int tz_minuteswest;

Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -538,10 +538,10 @@ packages:
dependency: transitive
description:
name: vm_service
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
url: "https://pub.dev"
source: hosted
version: "14.2.4"
version: "14.2.5"
watcher:
dependency: transitive
description:
Expand Down

0 comments on commit d170a93

Please sign in to comment.