| 236 | } |
| 237 | |
| 238 | void clear ( |
| 239 | ) |
| 240 | { |
| 241 | if (data != 0) |
| 242 | { |
| 243 | pool.deallocate_array(data); |
| 244 | nc_ = 0; |
| 245 | nr_ = 0; |
| 246 | data = 0; |
| 247 | at_start_ = true; |
| 248 | cur = 0; |
| 249 | last = 0; |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | void set_size ( |
| 254 | long rows, |
no test coverage detected