MCPcopy Create free account
hub / github.com/crossuo/crossuo / PushArr

Method PushArr

external/tinyxml2.h:236–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

PrintMethod · 0.80
WriteMethod · 0.80
PutcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected