diff options
author | Alex Lorenz <arphaman@gmail.com> | 2019-07-24 23:10:35 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2019-07-24 23:10:35 +0000 |
commit | 75c64a66c15900068ad31502c5eebb1ff4081b30 (patch) | |
tree | b7eabe2f1c90b74f03b0e8970794a6592eebcc9a /llvm | |
parent | de81bd0faa5413602b52ed4b876c79dc785f599b (diff) | |
download | bcm5719-llvm-75c64a66c15900068ad31502c5eebb1ff4081b30.tar.gz bcm5719-llvm-75c64a66c15900068ad31502c5eebb1ff4081b30.zip |
Fix unittest build issue in r366956
I marked the fields as private, but they're needed by the unittest.
I'll have to fix that up separarely in a follow-up.
llvm-svn: 366958
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/Support/FileCollector.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/Support/FileCollector.h b/llvm/include/llvm/Support/FileCollector.h index bf0aa592111..518546a3f07 100644 --- a/llvm/include/llvm/Support/FileCollector.h +++ b/llvm/include/llvm/Support/FileCollector.h @@ -50,6 +50,7 @@ private: m_vfs_writer.addFileMapping(virtual_path, real_path); } +protected: /// Synchronizes adding files. std::mutex m_mutex; |