diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-07-25 00:56:31 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-07-25 00:56:31 +0000 |
commit | 69b63da1673d4f4b97844bb259c7f3dc325b437a (patch) | |
tree | 98236ab60571ccf90853b57e6095ab39bd6de138 /lldb/source/Host/common/FileSystem.cpp | |
parent | 3e4e0478bbc388c12c20fd06463bb96ce7a0ff91 (diff) | |
download | llvm-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.cpp | 2 |
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); } |