Constructors -- default and copy -- and destructor
| 1218 | public: |
| 1219 | // Constructors -- default and copy -- and destructor |
| 1220 | explicit sparsegroup() : |
| 1221 | _group(0), _bitmap(0), _bm_erased(0) |
| 1222 | { |
| 1223 | _set_num_items(0); |
| 1224 | _set_num_alloc(0); |
| 1225 | } |
| 1226 | |
| 1227 | sparsegroup(const sparsegroup& x) : |
| 1228 | _group(0), _bitmap(x._bitmap), _bm_erased(x._bm_erased) |
nothing calls this directly
no test coverage detected