MCPcopy Create free account
hub / github.com/adriancable/eternal / ~TArray

Method ~TArray

doom/src/tarray.h:183–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181 return *this;
182 }
183 ~TArray ()
184 {
185 if (Array)
186 {
187 if (Count > 0)
188 {
189 DoDelete (0, Count-1);
190 }
191 free (Array);
192 Array = NULL;
193 Count = 0;
194 Most = 0;
195 }
196 }
197 // Check equality of two arrays
198 bool operator==(const TArray<T> &other) const
199 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected