CompareDump: do not use C++11 range based for loop.

pull/515/head
Alexander Gessler 2015-03-28 13:10:34 +01:00 committed by Alexander Gessler
parent a77f9419a2
commit e5d4f537bd
1 changed files with 2 additions and 2 deletions

View File

@ -252,8 +252,8 @@ private:
}
ss << std::endl << "Debug trace: "<< std::endl;
for (const std::string& s : debug_trace) {
ss << s << std::endl;
for (std::vector<std::string>::const_iterator it = debug_trace.begin(); it != debug_trace.end(); ++it) {
ss << *it << std::endl;
}
return ss.str();
}