diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-10-05 17:42:14 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-10-05 17:42:14 +0200 |
commit | e710fae8b8a1c34109644e5991f293b58e7eaa16 (patch) | |
tree | a01338c78a64b3a12dae9469d0d931969564a7e6 | |
parent | f8dade26a8acedf9d3f86ea04ca35751a7d7b35a (diff) | |
download | matcha-threads-e710fae8b8a1c34109644e5991f293b58e7eaa16.tar.gz matcha-threads-e710fae8b8a1c34109644e5991f293b58e7eaa16.zip |
fix error message
-rw-r--r-- | lib/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,5 +11,5 @@ static_assert(false, "Matcha Threads only supported on Linux!"); #elif defined(__aarch64__) # include "arch/arm64/api.h" #else -static_assert(false, "Matcha Threads only supported on x86_64!"); +static_assert(false, "Unsupported architecture!"); #endif |