aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Host/common/FileSystem.cpp
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
commit69b63da1673d4f4b97844bb259c7f3dc325b437a (patch)
tree98236ab60571ccf90853b57e6095ab39bd6de138 /lldb/source/Host/common/FileSystem.cpp
parent3e4e0478bbc388c12c20fd06463bb96ce7a0ff91 (diff)
downloadllvm-69b63da1673d4f4b97844bb259c7f3dc325b437a.zip
llvm-69b63da1673d4f4b97844bb259c7f3dc325b437a.tar.gz
llvm-69b63da1673d4f4b97844bb259c7f3dc325b437a.tar.bz2
[FileSystem] Fix ambiguous symbol on Windows.
The using declarations make FileCollector ambiguous. Specify that FileSystem takes an lldb_private::FileCollector. llvm-svn: 366974
Diffstat (limited to 'lldb/source/Host/common/FileSystem.cpp')
-rw-r--r--lldb/source/Host/common/FileSystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/common/FileSystem.cpp b/lldb/source/Host/common/FileSystem.cpp
index 8fc4ff4..61ee73f 100644
--- a/lldb/source/Host/common/FileSystem.cpp
+++ b/lldb/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);
}