From de40bd4cf9faa1c63e495ad2ffe2883a76c727c7 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 8 Apr 2015 23:05:59 +0000 Subject: Rename atom_collection -> AtomVector. Type names should start with an uppercase letter in the LLVM coding style. llvm-svn: 234452 --- lld/lib/Core/File.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lld/lib/Core/File.cpp') diff --git a/lld/lib/Core/File.cpp b/lld/lib/Core/File.cpp index 6ada51601c8..ac95f101679 100644 --- a/lld/lib/Core/File.cpp +++ b/lld/lib/Core/File.cpp @@ -15,10 +15,10 @@ namespace lld { File::~File() {} -File::atom_collection File::_noDefinedAtoms; -File::atom_collection File::_noUndefinedAtoms; -File::atom_collection File::_noSharedLibraryAtoms; -File::atom_collection File::_noAbsoluteAtoms; +File::AtomVector File::_noDefinedAtoms; +File::AtomVector File::_noUndefinedAtoms; +File::AtomVector File::_noSharedLibraryAtoms; +File::AtomVector File::_noAbsoluteAtoms; std::error_code File::parse() { std::lock_guard lock(_parseMutex); -- cgit v1.2.3