diff options
author | Jim Ingham <jingham@apple.com> | 2011-02-18 00:54:25 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-02-18 00:54:25 +0000 |
commit | e16c50a11a4cc49b0b4a88c481642f72003aac89 (patch) | |
tree | d86a18f84f4a736f5d10a240b3d576d03bc73754 /lldb/source/Commands/CommandObjectImage.cpp | |
parent | d12b480e29e3891c308b0380d591cdca4e8e9a63 (diff) | |
download | bcm5719-llvm-e16c50a11a4cc49b0b4a88c481642f72003aac89.tar.gz bcm5719-llvm-e16c50a11a4cc49b0b4a88c481642f72003aac89.zip |
Factor all the code that does "Execute a list of lldb command interpreter commands" into a single function in the Interpreter, and then use that in all the places that used to do this by hand.
llvm-svn: 125807
Diffstat (limited to 'lldb/source/Commands/CommandObjectImage.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectImage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectImage.cpp b/lldb/source/Commands/CommandObjectImage.cpp index 6b4a89a9c33..771562a8f2c 100644 --- a/lldb/source/Commands/CommandObjectImage.cpp +++ b/lldb/source/Commands/CommandObjectImage.cpp @@ -784,7 +784,7 @@ protected: CommandOptions m_options; }; -lldb::OptionEnumValueElement +static lldb::OptionEnumValueElement g_sort_option_enumeration[4] = { { eSortOrderNone, "none", "No sorting, use the original symbol table order."}, |