From 75c64a66c15900068ad31502c5eebb1ff4081b30 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. llvm-svn: 366958 --- llvm/include/llvm/Support/FileCollector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/include/llvm/Support/FileCollector.h b/llvm/include/llvm/Support/FileCollector.h index bf0aa59..518546a 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; -- 2.7.4