ReservedIdentifiers.hpp: Make the identifiers array's initialization strictly constant

This commit is contained in:
Username404 2022-09-27 16:08:44 +00:00
parent f348dc985f
commit 319c30cd03
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
#include "../Yerbacon.hpp"
#include <string_view>
static const array identifiers {
static constinit const array identifiers {
"class", "structure", "print", "print_line"
};