| 790 | typedef const value_type* const_iterator; |
| 791 | |
| 792 | ImVector() { Size = Capacity = 0; Data = NULL; } |
| 793 | ~ImVector() { if (Data) ImGui::MemFree(Data); } |
| 794 | |
| 795 | inline bool empty() const { return Size == 0; } |
nothing calls this directly
no outgoing calls
no test coverage detected