Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ packages:
path: ".."
relative: true
source: path
version: "7.44.0"
version: "7.45.0"
lints:
dependency: transitive
description:
Expand Down Expand Up @@ -124,10 +124,10 @@ packages:
dependency: "direct dev"
description:
name: pedantic_sensuikan1973
sha256: bba678bc9c3409c2e26811ad12064dc96817f4b5acfc5c2d2cb01353f2502bd0
sha256: e3ac40a3c25f687bb1fa0e6ebeadd4b96a48b940873856fc7fb7ba9729ffd293
url: "https://pub.dev"
source: hosted
version: "5.12.0"
version: "5.13.0"
pub_semver:
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 @@ -12,4 +12,4 @@ dependencies:

dev_dependencies:
analyzer: ^7.4.5
pedantic_sensuikan1973: ^5.12.0
pedantic_sensuikan1973: ^5.13.0
8 changes: 4 additions & 4 deletions lib/src/ffi/bindings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1377,11 +1377,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> _timezone$1 = _lookup<ffi.Long>('timezone');

int get timezone => _timezone.value;
int get timezone$1 => _timezone$1.value;

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

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

Expand Down
16 changes: 8 additions & 8 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ packages:
dependency: "direct dev"
description:
name: pedantic_sensuikan1973
sha256: bba678bc9c3409c2e26811ad12064dc96817f4b5acfc5c2d2cb01353f2502bd0
sha256: e3ac40a3c25f687bb1fa0e6ebeadd4b96a48b940873856fc7fb7ba9729ffd293
url: "https://pub.dev"
source: hosted
version: "5.12.0"
version: "5.13.0"
pool:
dependency: transitive
description:
Expand Down Expand Up @@ -453,10 +453,10 @@ packages:
dependency: "direct dev"
description:
name: test
sha256: "0561f3a2cfd33d10232360f16dfcab9351cfb7ad9b23e6cd6e8c7fb0d62c7ac3"
sha256: "65e29d831719be0591f7b3b1a32a3cda258ec98c58c7b25f7b84241bc31215bb"
url: "https://pub.dev"
source: hosted
version: "1.26.1"
version: "1.26.2"
test_api:
dependency: transitive
description:
Expand All @@ -469,10 +469,10 @@ packages:
dependency: transitive
description:
name: test_core
sha256: "8619a9a45be044b71fe2cd6b77b54fd60f1c67904c38d48706e2852a2bda1c60"
sha256: "80bf5a02b60af04b09e14f6fe68b921aad119493e26e490deaca5993fef1b05a"
url: "https://pub.dev"
source: hosted
version: "0.6.10"
version: "0.6.11"
typed_data:
dependency: transitive
description:
Expand All @@ -485,10 +485,10 @@ packages:
dependency: transitive
description:
name: vm_service
sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
sha256: "6f82e9ee8e7339f5d8b699317f6f3afc17c80a68ebef1bc0d6f52a678c14b1e6"
url: "https://pub.dev"
source: hosted
version: "15.0.0"
version: "15.0.1"
watcher:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dev_dependencies:
coverage: ^1.13.1 # See: https://github.com/dart-lang/test/issues/1265
ffigen: ^19.0.0
pana: ^0.22.21
pedantic_sensuikan1973: ^5.12.0
test: ^1.26.1
pedantic_sensuikan1973: ^5.13.0
test: ^1.26.2

topics:
- reversi
Expand Down
Loading