[lld] r250394 - Remove unnecessary llvm:: prefix.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 15 05:30:30 PDT 2015


Author: rafael
Date: Thu Oct 15 07:30:29 2015
New Revision: 250394

URL: http://llvm.org/viewvc/llvm-project?rev=250394&view=rev
Log:
Remove unnecessary llvm:: prefix.

Modified:
    lld/trunk/ELF/Writer.cpp

Modified: lld/trunk/ELF/Writer.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Writer.cpp?rev=250394&r1=250393&r2=250394&view=diff
==============================================================================
--- lld/trunk/ELF/Writer.cpp (original)
+++ lld/trunk/ELF/Writer.cpp Thu Oct 15 07:30:29 2015
@@ -69,7 +69,7 @@ private:
 
   std::unique_ptr<llvm::FileOutputBuffer> Buffer;
 
-  llvm::SpecificBumpPtrAllocator<OutputSection<ELFT>> CAlloc;
+  SpecificBumpPtrAllocator<OutputSection<ELFT>> CAlloc;
   std::vector<OutputSectionBase<ELFT::Is64Bits> *> OutputSections;
   unsigned getNumSections() const { return OutputSections.size() + 1; }
 




More information about the llvm-commits mailing list