| 130 | } |
| 131 | |
| 132 | void push(const Object& e) |
| 133 | { |
| 134 | if (!stk && stk_cache) |
| 135 | { |
| 136 | stk = stk_cache; |
| 137 | stk_cache = 0; |
| 138 | } |
| 139 | stk = stk ? stk->push(e, getPool()) |
| 140 | : FB_NEW_POOL(getPool()) Entry(e, 0); |
| 141 | } |
| 142 | |
| 143 | void push(const Stack& s) |
| 144 | { |
no test coverage detected