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 | |
| parent | 3e4e0478bbc388c12c20fd06463bb96ce7a0ff91 (diff) | |
| download | bcm5719-llvm-69b63da1673d4f4b97844bb259c7f3dc325b437a.tar.gz bcm5719-llvm-69b63da1673d4f4b97844bb259c7f3dc325b437a.zip | |
[FileSystem] Fix ambiguous symbol on Windows.
The using declarations make FileCollector ambiguous. Specify that
FileSystem takes an lldb_private::FileCollector.
llvm-svn: 366974
| -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 8fc4ff47a50..61ee73ff6ea 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); } |

