| 62 | } |
| 63 | |
| 64 | bool traRpbList::PopRpb(record_param* value, int Level) |
| 65 | { |
| 66 | if (Level < 0) { |
| 67 | return false; |
| 68 | } |
| 69 | FB_SIZE_T pos; |
| 70 | ExecAssert(find(traRpbListElement(value, Level), pos)); |
| 71 | const bool rc = (*this)[pos].lr_rpb->rpb_runtime_flags & RPB_refetch; |
| 72 | remove(pos); |
| 73 | return rc; |
| 74 | } |
| 75 |
no test coverage detected