summaryrefslogtreecommitdiff
path: root/tests/headers/derive-hash-struct-with-float-array.h
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-08-22 16:22:50 -0500
committerGitHub <noreply@github.com>2017-08-22 16:22:50 -0500
commit978b5316f79aae7a66fd7390d13276a005f9fc9a (patch)
tree080cb3c54b572fab3a0e4f7a8c059155a27ff378 /tests/headers/derive-hash-struct-with-float-array.h
parent723e93d1267e58cb1aafd04d221a0dff17e212d9 (diff)
parentff9d000435b84220d91347592282a76cbf4942e2 (diff)
Auto merge of #919 - photoszzt:has_float, r=fitzgen
Can derive Eq Fix: #880 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 53f0c79d..a34904f7 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
+// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
//
-/// A struct containing an array of floats that cannot derive hash.
+/// A struct containing an array of floats that cannot derive hash/eq but can derive partialeq.
struct foo {
float bar[3];
};