Age | Commit message (Collapse) | Author |
|
remove `clap` dependency :tada:
update the book installation instructions
|
|
When using test-one.sh, unquoted wildcards are expanded by the shell,
resulting in failing tests.
|
|
Also simplifies the logic that determines which enum variation gets chosen.
|
|
|
|
|
|
|
|
|
|
- The root crate is the `bindgen` binary
- Rust-ify the test suite, no more subprocesses!
- Update Travis config to test both crates
|
|
|
|
Previously, all function pointer types always had their arguments bound
as arg1, arg2, etc. This change preserves the argument names, when they
are available.
parser.rs
- Uses the type cursor to visit children and gather argument names and
types.
tests/func_ptr.rs
- Binds tests/headers/func_ptr.h and tests/headers/func_ptr_in_struct.h
and ensures that argument names are correctly bound.
|