Device: Remove const from bool return type

ks-refactor-docs
Kyle Schwarz 2024-08-02 11:10:20 -04:00
parent 387c39d3a0
commit f25a0a4a81
1 changed files with 1 additions and 1 deletions

View File

@ -2116,7 +2116,7 @@ bool Device::readVSA(const VSAExtractionSettings& extractionSettings) {
if(isOnline()) {
goOffline();
}
auto innerReadVSA = [&](uint64_t diskSize) -> const bool {
auto innerReadVSA = [&](uint64_t diskSize) -> bool {
// Adjust driver to offset to start of VSA file
const auto& offset = getVSAOffsetInLogicalDisk();
if(!offset) {