diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-07-16 09:27:02 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-07-16 09:27:02 +0000 |
commit | c5a2d7470e10576684bc9a74626d96db8ff069f1 (patch) | |
tree | 482cf4ac4698bdc449d279b60ea3b495ea53a648 /lldb/source/Commands/CommandObjectSettings.cpp | |
parent | a3e26d1a6cdfb5a3a97750863abb31e1e3fdd66b (diff) | |
download | bcm5719-llvm-c5a2d7470e10576684bc9a74626d96db8ff069f1.tar.gz bcm5719-llvm-c5a2d7470e10576684bc9a74626d96db8ff069f1.zip |
[lldb] Rename Options.inc to CommandOptions.inc [NFC]
It seems having two Options.inc files in the same project is giving our
custom Xcode project a hard time. This patch renames the new Options.inc
to CommandOptions.inc to prevent this conflict.
llvm-svn: 366196
Diffstat (limited to 'lldb/source/Commands/CommandObjectSettings.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectSettings.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectSettings.cpp b/lldb/source/Commands/CommandObjectSettings.cpp index 057c5de619c..55a0002c599 100644 --- a/lldb/source/Commands/CommandObjectSettings.cpp +++ b/lldb/source/Commands/CommandObjectSettings.cpp @@ -23,7 +23,7 @@ using namespace lldb_private; static constexpr OptionDefinition g_settings_set_options[] = { #define LLDB_OPTIONS_settings_set -#include "Options.inc" +#include "CommandOptions.inc" }; class CommandObjectSettingsSet : public CommandObjectRaw { @@ -312,7 +312,7 @@ protected: static constexpr OptionDefinition g_settings_write_options[] = { #define LLDB_OPTIONS_settings_write -#include "Options.inc" +#include "CommandOptions.inc" }; class CommandObjectSettingsWrite : public CommandObjectParsed { @@ -435,7 +435,7 @@ private: static constexpr OptionDefinition g_settings_read_options[] = { #define LLDB_OPTIONS_settings_read -#include "Options.inc" +#include "CommandOptions.inc" }; class CommandObjectSettingsRead : public CommandObjectParsed { |