MCPcopy Create free account
hub / github.com/WheretIB/nullc / FastVector

Method FastVector

SupSpi/SupSpi.h:97–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95 {
96 public:
97 FastVector()
98 {
99 data = &one;
100 memset(data, 0, sizeof(T));
101 max = 1;
102 count = 0;
103 }
104 ~FastVector()
105 {
106 if(data != &one)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected