| 244 | return Count++; |
| 245 | } |
| 246 | bool Pop () |
| 247 | { |
| 248 | if (Count > 0) |
| 249 | { |
| 250 | Array[--Count].~T(); |
| 251 | return true; |
| 252 | } |
| 253 | return false; |
| 254 | } |
| 255 | bool Pop (T &item) |
| 256 | { |
| 257 | if (Count > 0) |
nothing calls this directly
no outgoing calls
no test coverage detected