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

Method Push

3rdparty/tinyxml2/tinyxml2.h:223–228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221 }
222
223 void Push( T t ) {
224 TIXMLASSERT( _size < INT_MAX );
225 EnsureCapacity( _size+1 );
226 _mem[_size] = t;
227 ++_size;
228 }
229
230 T* PushArr( size_t count ) {
231 TIXMLASSERT( _size <= SIZE_MAX - count );

Callers 5

AllocMethod · 0.80
CreateUnlinkedNodeMethod · 0.80
ClearBufferFunction · 0.80
XMLPrinterMethod · 0.80
OpenElementMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected