| 89 | /********************** Capacity ****************************/ |
| 90 | |
| 91 | __forceinline bool empty () const { return size_active == 0; } |
| 92 | __forceinline size_t size () const { return size_active; } |
| 93 | __forceinline size_t capacity () const { return size_alloced; } |
| 94 |
nothing calls this directly
no outgoing calls
no test coverage detected