| 165 | */ |
| 166 | |
| 167 | bool BlockDeviceOutputStream::flush() { |
| 168 | |
| 169 | // write out if there is something to write |
| 170 | |
| 171 | if(_indexInBlock>0) |
| 172 | return _device.writeBlock(_block,_blockIndex); |
| 173 | |
| 174 | return true; |
| 175 | } |
| 176 | } |
nothing calls this directly
no test coverage detected