MCPcopy Create free account
hub / github.com/dillo-browser/dillo / SimpleVector

Method SimpleVector

lout/misc.hh:138–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136
137public:
138 inline SimpleVector (int initAlloc = 1)
139 {
140 this->num = 0;
141 this->numAlloc = initAlloc;
142 this->array = NULL;
143 }
144
145 inline SimpleVector (const SimpleVector &o) {
146 this->array = NULL;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected