| 217 | } |
| 218 | |
| 219 | Savepoint* moveToStack(Savepoint*& target) |
| 220 | { |
| 221 | // Relink savepoint to the top of the provided savepoint stack. |
| 222 | // Return the former "next" pointer to the caller. |
| 223 | |
| 224 | Savepoint* const next = m_next; |
| 225 | m_next = target; |
| 226 | fb_assert(m_next != this); |
| 227 | target = this; |
| 228 | return next; |
| 229 | } |
| 230 | |
| 231 | VerbAction* createAction(jrd_rel* relation); |
| 232 |
no outgoing calls
no test coverage detected