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/Core/ModuleList.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/Core/ModuleList.cpp')
-rw-r--r-- | lldb/source/Core/ModuleList.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lldb/source/Core/ModuleList.cpp b/lldb/source/Core/ModuleList.cpp index 7b448d4dd6d..093878d30b5 100644 --- a/lldb/source/Core/ModuleList.cpp +++ b/lldb/source/Core/ModuleList.cpp @@ -215,7 +215,7 @@ public: //-------------------------------------------------------------- ModuleMatches (const FileSpec *file_spec_ptr, const ArchSpec *arch_ptr, - const UUID *uuid_ptr, + const lldb_private::UUID *uuid_ptr, const ConstString *object_name) : m_file_spec_ptr (file_spec_ptr), m_arch_ptr (arch_ptr), @@ -260,10 +260,10 @@ private: //-------------------------------------------------------------- // Member variables. //-------------------------------------------------------------- - const FileSpec * m_file_spec_ptr; - const ArchSpec * m_arch_ptr; - const UUID * m_uuid_ptr; - const ConstString * m_object_name; + const FileSpec * m_file_spec_ptr; + const ArchSpec * m_arch_ptr; + const lldb_private::UUID * m_uuid_ptr; + const ConstString * m_object_name; }; size_t @@ -271,7 +271,7 @@ ModuleList::FindModules ( const FileSpec *file_spec_ptr, const ArchSpec *arch_ptr, - const UUID *uuid_ptr, + const lldb_private::UUID *uuid_ptr, const ConstString *object_name, ModuleList& matching_module_list ) const @@ -534,7 +534,7 @@ ModuleList::FindSharedModules ( const FileSpec& in_file_spec, const ArchSpec& arch, - const UUID *uuid_ptr, + const lldb_private::UUID *uuid_ptr, const ConstString *object_name_ptr, ModuleList &matching_module_list ) @@ -549,7 +549,7 @@ ModuleList::GetSharedModule ( const FileSpec& in_file_spec, const ArchSpec& arch, - const UUID *uuid_ptr, + const lldb_private::UUID *uuid_ptr, const ConstString *object_name_ptr, off_t object_offset, ModuleSP &module_sp, |