diff options
Diffstat (limited to 'tests/headers')
-rw-r--r-- | tests/headers/anon_enum.hpp | 2 | ||||
-rw-r--r-- | tests/headers/anon_enum_trait.hpp | 2 | ||||
-rw-r--r-- | tests/headers/anon_struct_in_union.h | 2 | ||||
-rw-r--r-- | tests/headers/anon_struct_in_union_1_0.h | 2 | ||||
-rw-r--r-- | tests/headers/anon_union.hpp | 3 | ||||
-rw-r--r-- | tests/headers/anon_union_1_0.hpp | 2 |
6 files changed, 6 insertions, 7 deletions
diff --git a/tests/headers/anon_enum.hpp b/tests/headers/anon_enum.hpp index 1a55a8d1..48df3c7a 100644 --- a/tests/headers/anon_enum.hpp +++ b/tests/headers/anon_enum.hpp @@ -1,4 +1,4 @@ -// bindgen-flags: --with-derive-hash +// bindgen-flags: --with-derive-hash --with-derive-partialeq struct Test { int foo; float bar; diff --git a/tests/headers/anon_enum_trait.hpp b/tests/headers/anon_enum_trait.hpp index 22137392..7d164054 100644 --- a/tests/headers/anon_enum_trait.hpp +++ b/tests/headers/anon_enum_trait.hpp @@ -1,4 +1,4 @@ -// bindgen-flags: --with-derive-hash +// bindgen-flags: --with-derive-hash --with-derive-partialeq template<typename _Tp> class DataType { diff --git a/tests/headers/anon_struct_in_union.h b/tests/headers/anon_struct_in_union.h index 2e6ac5e9..98d55056 100644 --- a/tests/headers/anon_struct_in_union.h +++ b/tests/headers/anon_struct_in_union.h @@ -1,4 +1,4 @@ -// bindgen-flags: --with-derive-hash +// bindgen-flags: --with-derive-hash --with-derive-partialeq struct s { union { struct inner { diff --git a/tests/headers/anon_struct_in_union_1_0.h b/tests/headers/anon_struct_in_union_1_0.h index 5e5023ba..86e5ca73 100644 --- a/tests/headers/anon_struct_in_union_1_0.h +++ b/tests/headers/anon_struct_in_union_1_0.h @@ -1,4 +1,4 @@ -// bindgen-flags: --rust-target 1.0 --with-derive-hash +// bindgen-flags: --rust-target 1.0 --with-derive-hash --with-derive-partialeq struct s { union { diff --git a/tests/headers/anon_union.hpp b/tests/headers/anon_union.hpp index 250dcb1a..ca1d3bc1 100644 --- a/tests/headers/anon_union.hpp +++ b/tests/headers/anon_union.hpp @@ -1,5 +1,4 @@ -// bindgen-flags: --with-derive-hash - +// bindgen-flags: --with-derive-hash --with-derive-partialeq template<typename T> struct TErrorResult { enum UnionState { diff --git a/tests/headers/anon_union_1_0.hpp b/tests/headers/anon_union_1_0.hpp index 33ab48ca..1a5e2b0d 100644 --- a/tests/headers/anon_union_1_0.hpp +++ b/tests/headers/anon_union_1_0.hpp @@ -1,4 +1,4 @@ -// bindgen-flags: --rust-target 1.0 --with-derive-hash +// bindgen-flags: --rust-target 1.0 --with-derive-hash --with-derive-partialeq template<typename T> struct TErrorResult { |