Applied a fix to qualify "UUID" with the lldb_private namespace to fix
build issues on MinGW.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@124888 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/Target.cpp b/source/Target/Target.cpp
index 96dd11d..7a39958 100644
--- a/source/Target/Target.cpp
+++ b/source/Target/Target.cpp
@@ -700,7 +700,7 @@
(
const FileSpec& file_spec,
const ArchSpec& arch,
- const UUID *uuid_ptr,
+ const lldb_private::UUID *uuid_ptr,
const ConstString *object_name,
off_t object_offset,
Error *error_ptr
diff --git a/source/Target/TargetList.cpp b/source/Target/TargetList.cpp
index 442b366..cbbb12f 100644
--- a/source/Target/TargetList.cpp
+++ b/source/Target/TargetList.cpp
@@ -49,7 +49,7 @@
Debugger &debugger,
const FileSpec& file,
const ArchSpec& arch,
- const UUID *uuid_ptr,
+ const lldb_private::UUID *uuid_ptr,
bool get_dependent_files,
TargetSP &target_sp
)