From 0f1312fe263b5ae5112f9a25f6c791f7ef99df70 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Sat, 31 Jan 2015 04:19:57 +0000 Subject: [PATCH] Make atom collections private. These fields were made protected in r193585. The aim of that change is to expose these fields to SimpleFileWrapper. Because SimpleFileWrapper class was removed in r227549, we can make them private. llvm-svn: 227672 --- lld/include/lld/Core/Simple.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/include/lld/Core/Simple.h b/lld/include/lld/Core/Simple.h index b1c560d11be5..6d646fecf38a 100644 --- a/lld/include/lld/Core/Simple.h +++ b/lld/include/lld/Core/Simple.h @@ -82,7 +82,7 @@ public: return make_range(_definedAtoms._atoms); } -protected: +private: atom_collection_vector _definedAtoms; atom_collection_vector _undefinedAtoms; atom_collection_vector _sharedLibraryAtoms;