aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2022-09-13 14:58:53 -0700
committerJim Ingham <jingham@apple.com>2022-09-13 14:58:53 -0700
commita2d0a01e3f9941d0d5370890105f70da142f493f (patch)
tree52342cd8fbfc0b466e95008828ad985dd81c5f71 /lldb/source/Interpreter
parent3f23eb6591bb1eecae38019e8ab1fdf5e2951ae9 (diff)
downloadllvm-a2d0a01e3f9941d0d5370890105f70da142f493f.zip
llvm-a2d0a01e3f9941d0d5370890105f70da142f493f.tar.gz
llvm-a2d0a01e3f9941d0d5370890105f70da142f493f.tar.bz2
Revert "constexpr isn't right here."
This didn't help either. This reverts commit 8433b210839ed655852428ba8b34bb67b191957a.
Diffstat (limited to 'lldb/source/Interpreter')
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp
index 8987871..2218d54 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.";
-const char * const CommandInterpreter::g_no_argument = "<no-argument>";
-const char * const CommandInterpreter::g_need_argument = "<need-argument>";
-const char * const CommandInterpreter::g_argument = "<argument>";
+constexpr const char *CommandInterpreter::g_no_argument = "<no-argument>";
+constexpr const char *CommandInterpreter::g_need_argument = "<need-argument>";
+constexpr const char *CommandInterpreter::g_argument = "<argument>";
#define LLDB_PROPERTIES_interpreter