aboutsummaryrefslogtreecommitdiff
path: root/source/Host
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-07-25 00:56:31 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-07-25 00:56:31 +0000
commit071a8e9d795b7afcd7fcd9012d8a2d73b5688bca (patch)
tree68dd02c750b8d725a2a5c7f52bc570fde6abc5b3 /source/Host
parentddfccf51563afd365672932c97b461fced4ba151 (diff)
downloadlldb-071a8e9d795b7afcd7fcd9012d8a2d73b5688bca.tar.gz
[FileSystem] Fix ambiguous symbol on Windows.
The using declarations make FileCollector ambiguous. Specify that FileSystem takes an lldb_private::FileCollector. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@366974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Host')
-rw-r--r--source/Host/common/FileSystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Host/common/FileSystem.cpp b/source/Host/common/FileSystem.cpp
index 8fc4ff47a..61ee73ff6 100644
--- a/source/Host/common/FileSystem.cpp
+++ b/source/Host/common/FileSystem.cpp
@@ -49,7 +49,7 @@ void FileSystem::Initialize() {
InstanceImpl().emplace();
}
-void FileSystem::Initialize(FileCollector &collector) {
+void FileSystem::Initialize(lldb_private::FileCollector &collector) {
lldbassert(!InstanceImpl() && "Already initialized.");
InstanceImpl().emplace(collector);
}