aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-10-05 17:42:14 +0200
committerjohannst <johannes.stoelp@gmail.com>2020-10-05 17:42:14 +0200
commite710fae8b8a1c34109644e5991f293b58e7eaa16 (patch)
treea01338c78a64b3a12dae9469d0d931969564a7e6
parentf8dade26a8acedf9d3f86ea04ca35751a7d7b35a (diff)
downloadmatcha-threads-e710fae8b8a1c34109644e5991f293b58e7eaa16.tar.gz
matcha-threads-e710fae8b8a1c34109644e5991f293b58e7eaa16.zip
fix error message
-rw-r--r--lib/arch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/arch.h b/lib/arch.h
index 9604be8..bb58576 100644
--- a/lib/arch.h
+++ b/lib/arch.h
@@ -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