1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Remove const qualifier from constexpr statements

This commit is contained in:
Aaron van Geffen
2023-06-24 11:45:26 +02:00
parent f9d8c5923d
commit d425e0a8bb
313 changed files with 3564 additions and 3564 deletions

View File

@@ -1984,7 +1984,7 @@ static constexpr const utf8* console_window_table[] = {
};
// clang-format on
static constexpr const ConsoleCommand console_command_table[] = {
static constexpr ConsoleCommand console_command_table[] = {
{ "abort", ConsoleCommandAbort, "Calls std::abort(), for testing purposes only.", "abort" },
{ "add_news_item", ConsoleCommandAddNewsItem, "Inserts a news item", "add_news_item [<type> <message> <assoc>]" },
{ "assert", ConsoleCommandAssert, "Triggers assertion failure, for testing purposes only", "assert" },