diff options
author | Jim Ingham <jingham@apple.com> | 2022-09-13 14:58:53 -0700 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2022-09-13 14:58:53 -0700 |
commit | a2d0a01e3f9941d0d5370890105f70da142f493f (patch) | |
tree | 52342cd8fbfc0b466e95008828ad985dd81c5f71 | |
parent | 3f23eb6591bb1eecae38019e8ab1fdf5e2951ae9 (diff) | |
download | llvm-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.
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 6 |
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 |