MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / PushArr

Method PushArr

3rdparty/tinyxml2/tinyxml2.h:230–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228 }
229
230 T* PushArr( size_t count ) {
231 TIXMLASSERT( _size <= SIZE_MAX - count );
232 EnsureCapacity( _size+count );
233 T* ret = &_mem[_size];
234 _size += count;
235 return ret;
236 }
237
238 T Pop() {
239 TIXMLASSERT( _size > 0 );

Callers 3

PrintMethod · 0.80
WriteMethod · 0.80
PutcMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected