Skip to content

Commit

Permalink
dart pub upgrade --major-versions --tighten
Browse files Browse the repository at this point in the history
  • Loading branch information
sensuikan1973 authored Jan 17, 2025
1 parent 6e13be0 commit f3cf7d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ packages:
dependency: transitive
description:
name: _fe_analyzer_shared
sha256: "88399e291da5f7e889359681a8f64b18c5123e03576b01f32a6a276611e511c3"
sha256: "03f6da266a27a4538a69295ec142cb5717d7d4e5727b84658b63e1e1509bac9c"
url: "https://pub.dev"
source: hosted
version: "78.0.0"
version: "79.0.0"
_macros:
dependency: transitive
description: dart
Expand All @@ -18,10 +18,10 @@ packages:
dependency: "direct dev"
description:
name: analyzer
sha256: "62899ef43d0b962b056ed2ebac6b47ec76ffd003d5f7c4e4dc870afe63188e33"
sha256: c9040fc56483c22a5e04a9f6a251313118b1a3c42423770623128fa484115643
url: "https://pub.dev"
source: hosted
version: "7.1.0"
version: "7.2.0"
async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies:
path: ..

dev_dependencies:
analyzer: ^7.1.0
analyzer: ^7.2.0
pedantic_sensuikan1973: ^5.9.0
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> _timezone1 = _lookup<ffi.Long>('timezone');
late final ffi.Pointer<ffi.Long> _timezone = _lookup<ffi.Long>('timezone');

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

set timezone1(int value) => _timezone1.value = value;
set timezone(int value) => _timezone.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 @@ -10148,7 +10148,7 @@ final class timeval64 extends ffi.Struct {
external int tv_usec;
}

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

Expand Down

0 comments on commit f3cf7d2

Please # to comment.