| 139 | void resize(unsigned N) { MetadataPtrs.resize(N); } |
| 140 | void push_back(Metadata *MD) { MetadataPtrs.emplace_back(MD); } |
| 141 | void clear() { MetadataPtrs.clear(); } |
| 142 | Metadata *back() const { return MetadataPtrs.back(); } |
| 143 | void pop_back() { MetadataPtrs.pop_back(); } |
| 144 | bool empty() const { return MetadataPtrs.empty(); } |
no outgoing calls
no test coverage detected