MCPcopy Create free account
hub / github.com/IntegralPilot/wasm_os / ~vector

Method ~vector

stdlib/cpp/vector.hpp:51–54  ·  view source on GitHub ↗

Destructor

Source from the content-addressed store, hash-verified

49
50 // Destructor
51 ~vector() {
52 clear(); // Destroy elements
53 deallocate(data_); // Deallocate memory
54 }
55
56 // Copy Assignment Operator
57 vector& operator=(const vector& other) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected