Skip to content

Commit

Permalink
use signed integers for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz committed Oct 4, 2022
1 parent 2cc2c47 commit 523a950
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions tests/expectations/tests/remove_alias.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions tests/headers/remove_alias.h
@@ -1,9 +1,9 @@
// bindgen-flags: --remove-alias "uint.*"
// bindgen-flags: --remove-alias "int.*"

typedef unsigned long long uint64;
typedef unsigned int uint32;
typedef uint32 u32;
typedef long long int64;
typedef int int32;
typedef int32 i32;

uint64 foo();
uint32 bar();
u32 baz();
int64 foo();
int32 bar();
i32 baz();

0 comments on commit 523a950

Please sign in to comment.