summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNiv <nivkner@zoho.com>2017-08-05 18:45:22 +0000
committerNiv <nivkner@zoho.com>2017-08-05 18:45:22 +0000
commit7ae2ccde9c4ac9dc3722872c36e78a75354ca288 (patch)
treecab08b80a80d8a546e4338882739f2a74f28dba9 /tests
parent39a88d366cde89c04a78e01f0147b94ff1e3eb6a (diff)
fix test for explicitly typed enum on aarch64
Diffstat (limited to 'tests')
-rw-r--r--tests/headers/enum_explicit_type.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/headers/enum_explicit_type.hpp b/tests/headers/enum_explicit_type.hpp
index 78eadd40..b2a4307e 100644
--- a/tests/headers/enum_explicit_type.hpp
+++ b/tests/headers/enum_explicit_type.hpp
@@ -5,7 +5,7 @@ enum Foo: unsigned char {
Qux
};
-enum Neg: char {
+enum Neg: signed char {
MinusOne = -1,
One = 1,
};