Skip to content

Commit 523a950

Browse files
committed
use signed integers for tests
1 parent 2cc2c47 commit 523a950

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

tests/expectations/tests/remove_alias.rs

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/headers/remove_alias.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// bindgen-flags: --remove-alias "uint.*"
1+
// bindgen-flags: --remove-alias "int.*"
22

3-
typedef unsigned long long uint64;
4-
typedef unsigned int uint32;
5-
typedef uint32 u32;
3+
typedef long long int64;
4+
typedef int int32;
5+
typedef int32 i32;
66

7-
uint64 foo();
8-
uint32 bar();
9-
u32 baz();
7+
int64 foo();
8+
int32 bar();
9+
i32 baz();

0 commit comments

Comments
 (0)