CompareDump: do not use C++11 range based for loop.
parent
a77f9419a2
commit
e5d4f537bd
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue