From 27bb8977c3788ab4d69aa470cfe64fca9515305a Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Wed, 24 Jul 2019 23:10:35 +0000 Subject: [PATCH] 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@366958 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/FileCollector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/Support/FileCollector.h b/include/llvm/Support/FileCollector.h index bf0aa592111..518546a3f07 100644 --- a/include/llvm/Support/FileCollector.h +++ b/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; -- 2.50.0