From: Rui Ueyama Date: Fri, 24 Mar 2017 00:15:37 +0000 (+0000) Subject: Use `using namespace lld` for consistency with other files. X-Git-Tag: llvmorg-5.0.0-rc1~9281 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be68fe18cc420115a7187d87ffd87ef0bb0685cd;p=platform%2Fupstream%2Fllvm.git Use `using namespace lld` for consistency with other files. llvm-svn: 298668 --- diff --git a/lld/ELF/Error.cpp b/lld/ELF/Error.cpp index 700ef70..d709ff3 100644 --- a/lld/ELF/Error.cpp +++ b/lld/ELF/Error.cpp @@ -20,10 +20,10 @@ #include #endif -using namespace lld::elf; using namespace llvm; -namespace lld { +using namespace lld; +using namespace lld::elf; uint64_t elf::ErrorCount; raw_ostream *elf::ErrorOS; @@ -101,5 +101,3 @@ void elf::fatal(const Twine &Msg) { *ErrorOS << Msg << "\n"; exitLld(1); } - -} // namespace lld