We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9093676 commit 62b1f25Copy full SHA for 62b1f25
src/cxx_supportlib/oxt/implementation.cpp
@@ -272,14 +272,14 @@ tracable_exception &
272
tracable_exception::operator=(const tracable_exception &other) {
273
if (this != &other) {
274
// Clean up existing backtrace points
275
- for (auto p: backtrace_copy) {
+ for (trace_point * p: backtrace_copy) {
276
delete p;
277
}
278
backtrace_copy.clear();
279
280
// Copy backtrace points from other
281
backtrace_copy.reserve(other.backtrace_copy.size());
282
- for (const auto p2: other.backtrace_copy) {
+ for (const trace_point *const p2: other.backtrace_copy) {
283
trace_point *p;
284
if (p2->m_hasDataFunc) {
285
p = new trace_point(
0 commit comments