Skip to content

Commit

Permalink
merge tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdrz committed Oct 5, 2022
1 parent 60c09cf commit fac0998
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 30 deletions.
17 changes: 13 additions & 4 deletions bindgen-tests/tests/expectations/tests/remove_alias.rs

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

This file was deleted.

14 changes: 0 additions & 14 deletions bindgen-tests/tests/headers/remove_alias.h

This file was deleted.

18 changes: 18 additions & 0 deletions bindgen-tests/tests/headers/remove_alias.hpp
@@ -0,0 +1,18 @@
// bindgen-flags: --remove-alias "int.*"

typedef long long int64;
typedef int int32;
typedef int32 i32;
struct int32_ {
int32 inner;
};
typedef int32* int32_ptr;

int64 returns_int64();
int32 returns_int32();
i32 returns_i32();
struct int32_ returns_int32_();
int32_ptr returns_int32_ptr();

template<typename T>
using integer = T;
4 changes: 0 additions & 4 deletions bindgen-tests/tests/headers/remove_template_alias.hpp

This file was deleted.

0 comments on commit fac0998

Please sign in to comment.