MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / PushArr

Method PushArr

Dependencies/tinyxml2/include/tinyxml2.h:235–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

PrintMethod · 0.80
WriteMethod · 0.80
PutcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected