From cf9ba370186e6c0baa8d3c30d2386b5fabe0964a Mon Sep 17 00:00:00 2001 From: Aetias Date: Sat, 6 Jan 2024 10:37:11 +0100 Subject: [PATCH] Ignore `override` keyword when compiling --- include/global.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/global.h b/include/global.h index 871800de..c1672d03 100644 --- a/include/global.h +++ b/include/global.h @@ -14,4 +14,7 @@ #define NONMATCH #endif +// `override` was added in C++11 before the DS, so we only use the keyword to indicate overriden functions +#define override + #endif