Remove unusual use of using.

llvm-svn: 210081
This commit is contained in:
Rui Ueyama 2014-06-03 07:24:46 +00:00
parent b226964e25
commit 9939b5ab5e
1 changed files with 1 additions and 3 deletions

View 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; }