diff options
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); |