diff options
author | Rui Ueyama <ruiu@google.com> | 2015-04-08 23:05:59 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2015-04-08 23:05:59 +0000 |
commit | de40bd4cf9faa1c63e495ad2ffe2883a76c727c7 (patch) | |
tree | 2992bbd8a578ad1d603e3204addee3b115e2211f /lld/lib/Core/File.cpp | |
parent | 4cb3d064ce128817b23e5bc3bc2a6ee96c805cbd (diff) | |
download | bcm5719-llvm-de40bd4cf9faa1c63e495ad2ffe2883a76c727c7.tar.gz bcm5719-llvm-de40bd4cf9faa1c63e495ad2ffe2883a76c727c7.zip |
Rename atom_collection -> AtomVector.
Type names should start with an uppercase letter in the LLVM coding style.
llvm-svn: 234452
Diffstat (limited to 'lld/lib/Core/File.cpp')
-rw-r--r-- | lld/lib/Core/File.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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<DefinedAtom> File::_noDefinedAtoms; -File::atom_collection<UndefinedAtom> File::_noUndefinedAtoms; -File::atom_collection<SharedLibraryAtom> File::_noSharedLibraryAtoms; -File::atom_collection<AbsoluteAtom> File::_noAbsoluteAtoms; +File::AtomVector<DefinedAtom> File::_noDefinedAtoms; +File::AtomVector<UndefinedAtom> File::_noUndefinedAtoms; +File::AtomVector<SharedLibraryAtom> File::_noSharedLibraryAtoms; +File::AtomVector<AbsoluteAtom> File::_noAbsoluteAtoms; std::error_code File::parse() { std::lock_guard<std::mutex> lock(_parseMutex); |