diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 2218d54e3d975..89878713161bc 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