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

Method Push

deps/tinyxml2/include/tinyxml2/tinyxml2.h:225–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223 }
224
225 void Push( T t ) {
226 TIXMLASSERT( _size < INT_MAX );
227 EnsureCapacity( _size+1 );
228 _mem[_size] = t;
229 ++_size;
230 }
231
232 T* PushArr( int count ) {
233 TIXMLASSERT( count >= 0 );

Callers 5

XMLPrinterMethod · 0.45
OpenElementMethod · 0.45
AllocMethod · 0.45
CreateUnlinkedNodeMethod · 0.45
ClearBufferFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected