From 8433b210839ed655852428ba8b34bb67b191957a Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Tue, 13 Sep 2022 13:01:05 -0700 Subject: [PATCH] constexpr isn't right here. --- lldb/source/Interpreter/CommandInterpreter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 2218d54..8987871 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -105,9 +105,9 @@ static constexpr const char *InitFileWarning = "and\n" "accept the security risk."; -constexpr const char *CommandInterpreter::g_no_argument = ""; -constexpr const char *CommandInterpreter::g_need_argument = ""; -constexpr const char *CommandInterpreter::g_argument = ""; +const char * const CommandInterpreter::g_no_argument = ""; +const char * const CommandInterpreter::g_need_argument = ""; +const char * const CommandInterpreter::g_argument = ""; #define LLDB_PROPERTIES_interpreter -- 2.7.4