summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_derive_debug.h
AgeCommit message (Collapse)Author
2022-10-04split the repo into a workspaceChristian Poveda
remove `clap` dependency :tada: update the book installation instructions
2021-07-16Let Rust derive everything but Default for large arrays in 1.47 and laterIan P. Cooke
Fixes #1977 as of rust-lang/rust#74060 is available since Rust 1.47 Fixes #2041. Closes #2070.
2017-08-21Struct related tests for can derive EqZhiting Zhu
2017-08-14Struct related tests for derive PartialEqZhiting Zhu
2017-08-09Struct related tests for derive HashZhiting Zhu
2017-01-23Unify under the `bindgen` name.Emilio Cobos Álvarez
2016-11-16Transition to libbindgen sub-crateJeff Waugh
- The root crate is the `bindgen` binary - Rust-ify the test suite, no more subprocesses! - Update Travis config to test both crates
2016-03-10Add #[derive(Debug)] to all structs and enums.Yamakaky
Don't derive debug on a struct if one of it's members isn't Debug. Add a new test for this case. Fixes #261