MCPcopy Create free account
hub / github.com/avast/retdec / PushArr

Method PushArr

deps/tinyxml2/include/tinyxml2/tinyxml2.h:232–239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230 }
231
232 T* PushArr( int count ) {
233 TIXMLASSERT( count >= 0 );
234 TIXMLASSERT( _size <= INT_MAX - count );
235 EnsureCapacity( _size+count );
236 T* ret = &_mem[_size];
237 _size += count;
238 return ret;
239 }
240
241 T Pop() {
242 TIXMLASSERT( _size > 0 );

Callers 3

PrintMethod · 0.80
WriteMethod · 0.80
PutcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected