File tree 2 files changed +1
-11
lines changed
2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -415,24 +415,15 @@ class Per_sort {
415
415
}
416
416
Tlink* p = result.m_fl [0 ];
417
417
it = m_table.m_rows .begin ();
418
- // int cnt = 0;
419
418
while (p) {
420
- *it++ = p->row ;
421
- // cnt++;
419
+ *it++ = p->row ;
422
420
Tlink* e = p->get_eq ();
423
421
while (e) {
424
- // cnt++;
425
422
*it++ = e->row ;
426
423
e = e->get_eq ();
427
424
}
428
425
p = p->m_next ;
429
426
};
430
- // CID 1436254 Dereference after null check
431
- // Code disabled, it makes no sense
432
- // if(cnt != table_size)
433
- // {
434
- // p++;
435
- // }
436
427
437
428
delete[] links;
438
429
}
Original file line number Diff line number Diff line change @@ -668,7 +668,6 @@ class OP : public Token {
668
668
}
669
669
m_name += " )" ;
670
670
}
671
- // m_name+=")";
672
671
return m_name.c_str ();
673
672
}
674
673
Coltype::Type ret_type () { return m_t ; }
You can’t perform that action at this time.
0 commit comments