MCPcopy Create free account
hub / github.com/boostorg/build / E

Class E

v2/engine/boehm_gc/tests/test_cpp.cc:138–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136
137
138class E: public gc_cleanup {public:
139 /* A collectable class with clean-up for use by F. */
140
141 E() {
142 nAllocated++;}
143 ~E() {
144 nFreed++;}
145
146 static int nFreed;
147 static int nAllocated;};
148
149int E::nFreed = 0;
150int E::nAllocated = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected