From e710fae8b8a1c34109644e5991f293b58e7eaa16 Mon Sep 17 00:00:00 2001 From: johannst Date: Mon, 5 Oct 2020 17:42:14 +0200 Subject: fix error message --- lib/arch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3