Remove unusual use of using.
authorRui Ueyama <ruiu@google.com>
Tue, 3 Jun 2014 07:24:46 +0000 (07:24 +0000)
committerRui Ueyama <ruiu@google.com>
Tue, 3 Jun 2014 07:24:46 +0000 (07:24 +0000)
llvm-svn: 210081

lld/include/lld/ReaderWriter/LinkerScript.h

index bc9576b..25e7cf5 100644 (file)
@@ -155,9 +155,7 @@ class Group : public Command {
 public:
   template <class RangeT>
   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; }