diff options
author | Greg Clayton <gclayton@apple.com> | 2011-02-04 18:53:10 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-02-04 18:53:10 +0000 |
commit | 608302682264195d8e7da06ad1f74862fc26c865 (patch) | |
tree | 9cb16894252d881763ba0f877c38ba76c7b05731 /lldb/source/Commands/CommandObjectImage.cpp | |
parent | 490112f7bfdc9737bcf1c00f90e473307b793a31 (diff) | |
download | bcm5719-llvm-608302682264195d8e7da06ad1f74862fc26c865.tar.gz bcm5719-llvm-608302682264195d8e7da06ad1f74862fc26c865.zip |
Applied a fix to qualify "UUID" with the lldb_private namespace to fix
build issues on MinGW.
llvm-svn: 124888
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 5b56b6a0d7a..f71638c5c80 100644 --- a/lldb/source/Commands/CommandObjectImage.cpp +++ b/lldb/source/Commands/CommandObjectImage.cpp @@ -1312,7 +1312,7 @@ lldb::OptionDefinition CommandObjectImageList::CommandOptions::g_option_table[] = { { LLDB_OPT_SET_1, false, "arch", 'a', optional_argument, NULL, 0, eArgTypeWidth, "Display the architecture when listing images."}, -{ LLDB_OPT_SET_1, false, "uuid", 'u', no_argument, NULL, 0, eArgTypeNone, "Display the UUID when listing images."}, +{ LLDB_OPT_SET_1, false, "uuid", 'u', no_argument, NULL, 0, eArgTypeNone, "Display the UUID when listing images."}, { LLDB_OPT_SET_1, false, "fullpath", 'f', optional_argument, NULL, 0, eArgTypeWidth, "Display the fullpath to the image object file."}, { LLDB_OPT_SET_1, false, "directory", 'd', optional_argument, NULL, 0, eArgTypeWidth, "Display the directory with optional width for the image object file."}, { LLDB_OPT_SET_1, false, "basename", 'b', optional_argument, NULL, 0, eArgTypeWidth, "Display the basename with optional width for the image object file."}, |