summaryrefslogtreecommitdiff
path: root/tests/headers/derive-hash-struct-with-float-array.h
diff options
context:
space:
mode:
authorSergey Pepyakin <s.pepyakin@gmail.com>2017-09-19 22:52:05 +0300
committerSergey Pepyakin <s.pepyakin@gmail.com>2017-09-19 22:54:32 +0300
commit7308ee86f14d3db5a4f37e6a99790d8646c12d3a (patch)
tree656c037c2c742e3ffcff5f980e33a29c97f6ac0e /tests/headers/derive-hash-struct-with-float-array.h
parent40295d2c448725d940525d81ab04cbc1db0b94f7 (diff)
Add --with-derive-ord to some tests
Diffstat (limited to 'tests/headers/derive-hash-struct-with-float-array.h')
-rw-r--r--tests/headers/derive-hash-struct-with-float-array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/headers/derive-hash-struct-with-float-array.h b/tests/headers/derive-hash-struct-with-float-array.h
index 937217a0..2294b1de 100644
--- a/tests/headers/derive-hash-struct-with-float-array.h
+++ b/tests/headers/derive-hash-struct-with-float-array.h
@@ -1,6 +1,6 @@
-// bindgen-flags: --with-derive-hash --with-derive-partialord --with-derive-partialeq --with-derive-eq
+// bindgen-flags: --with-derive-hash --with-derive-partialord --with-derive-ord --with-derive-partialeq --with-derive-eq
//
-/// A struct containing an array of floats that cannot derive hash/eq but can derive partialeq and partialord
+/// A struct containing an array of floats that cannot derive Hash/Eq/Ord but can derive PartialEq/PartialOrd
struct foo {
float bar[3];
};