| 87 | |
| 88 | #if 0 |
| 89 | void |
| 90 | Volume::clearSpan(Span* span) |
| 91 | { |
| 92 | auto spot = std::remove_if(_stripes.begin(), _stripes.end(), [span,this](StripeSM* stripe) { return stripe->_span == span ? ( this->_size -= stripe->_len , true ) : false; }); |
| 93 | _stripes.erase(spot, _stripes.end()); |
| 94 | } |
| 95 | #endif |
| 96 | |
| 97 | void |