From: Rui Ueyama Date: Tue, 3 Jun 2014 07:24:46 +0000 (+0000) Subject: Remove unusual use of using. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9939b5ab5ef462087e5301f6eac97d1229c88f2c;p=platform%2Fupstream%2Fllvm.git Remove unusual use of using. llvm-svn: 210081 --- diff --git a/lld/include/lld/ReaderWriter/LinkerScript.h b/lld/include/lld/ReaderWriter/LinkerScript.h index bc9576b..25e7cf5 100644 --- a/lld/include/lld/ReaderWriter/LinkerScript.h +++ b/lld/include/lld/ReaderWriter/LinkerScript.h @@ -155,9 +155,7 @@ class Group : public Command { public: template explicit Group(RangeT range) : Command(Kind::Group) { - using std::begin; - using std::end; - std::copy(begin(range), end(range), std::back_inserter(_paths)); + std::copy(std::begin(range), std::end(range), std::back_inserter(_paths)); } static bool classof(const Command *c) { return c->getKind() == Kind::Group; }