summaryrefslogtreecommitdiff
path: root/tests/headers/derive-hash-struct-with-float-array.h
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-09-19 12:58:02 -0500
committerGitHub <noreply@github.com>2017-09-19 12:58:02 -0500
commit1906a264c1d3b4620d803dd4030750f981b42978 (patch)
tree55e11b8c7175ca26e9bdda2a9faa0ee04b9e9006 /tests/headers/derive-hash-struct-with-float-array.h
parentda942c43323058024a84af283f2f3de9c596b975 (diff)
parente4a4b47f4481f687f9cd88bd95f617784c2108ba (diff)
Auto merge of #1002 - pepyakin:derive-partialord-when-possible, r=fitzgen
Derive PartialOrd when possible Fixes #882 r? @fitzgen
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 a34904f7..937217a0 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-partialeq --with-derive-eq
+// bindgen-flags: --with-derive-hash --with-derive-partialord --with-derive-partialeq --with-derive-eq
//
-/// A struct containing an array of floats that cannot derive hash/eq but can derive partialeq.
+/// A struct containing an array of floats that cannot derive hash/eq but can derive partialeq and partialord
struct foo {
float bar[3];
};