Skip to content

Commit 62b1f25

Browse files
committed
remove auto
1 parent 9093676 commit 62b1f25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cxx_supportlib/oxt/implementation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,14 +272,14 @@ tracable_exception &
272272
tracable_exception::operator=(const tracable_exception &other) {
273273
if (this != &other) {
274274
// Clean up existing backtrace points
275-
for (auto p: backtrace_copy) {
275+
for (trace_point * p: backtrace_copy) {
276276
delete p;
277277
}
278278
backtrace_copy.clear();
279279

280280
// Copy backtrace points from other
281281
backtrace_copy.reserve(other.backtrace_copy.size());
282-
for (const auto p2: other.backtrace_copy) {
282+
for (const trace_point *const p2: other.backtrace_copy) {
283283
trace_point *p;
284284
if (p2->m_hasDataFunc) {
285285
p = new trace_point(

0 commit comments

Comments
 (0)