From 6cb9b968d553c290dc7325ea700863d6918447d2 Mon Sep 17 00:00:00 2001 From: Lucas Ribeiro Date: Tue, 27 Jan 2026 14:55:56 -0300 Subject: [PATCH] fix: non static variable --- ps2xRecomp/src/code_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ps2xRecomp/src/code_generator.cpp b/ps2xRecomp/src/code_generator.cpp index df51f11..d605f96 100644 --- a/ps2xRecomp/src/code_generator.cpp +++ b/ps2xRecomp/src/code_generator.cpp @@ -10,7 +10,7 @@ namespace ps2recomp { - static const std::unordered_set kKeywords = { + const std::unordered_set kKeywords = { "alignas", "alignof", "and", "and_eq", "asm", "auto", "bitand", "bitor", "bool", "break", "case", "catch", "char", "char8_t", "char16_t", "char32_t", "class", "compl", "concept", "const", "consteval", "constexpr", "constinit", "const_cast",