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;
|
ss << std::endl << "Debug trace: "<< std::endl;
|
||||||
for (const std::string& s : debug_trace) {
|
for (std::vector<std::string>::const_iterator it = debug_trace.begin(); it != debug_trace.end(); ++it) {
|
||||||
ss << s << std::endl;
|
ss << *it << std::endl;
|
||||||
}
|
}
|
||||||
return ss.str();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue