From 6b8e21c1bb775f0f6fdf27b34e1cde10a479b0dd Mon Sep 17 00:00:00 2001 From: Michael Liao Date: Thu, 7 Jan 2016 07:58:25 +0000 Subject: [PATCH] Modernize to range-based loop llvm-svn: 257037 --- utils/KillTheDoctor/KillTheDoctor.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/utils/KillTheDoctor/KillTheDoctor.cpp b/utils/KillTheDoctor/KillTheDoctor.cpp index fae3b1a8b9d..6c2242aafdf 100644 --- a/utils/KillTheDoctor/KillTheDoctor.cpp +++ b/utils/KillTheDoctor/KillTheDoctor.cpp @@ -328,11 +328,9 @@ int main(int argc, char **argv) { if (TraceExecution) errs() << ToolName << ": Found Program: " << ProgramToRun << '\n'; - for (std::vector::iterator i = Argv.begin(), - e = Argv.end(); - i != e; ++i) { + for (const std::string &Arg : Argv) { CommandLine.push_back(' '); - CommandLine.append(*i); + CommandLine.append(Arg); } if (TraceExecution)