Merge pull request #24 from howard0su/osx

another warning
This commit is contained in:
AlexandreRouma 2020-10-22 11:01:24 +02:00 committed by GitHub
commit d637cb9e75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ void VFOManager::deleteVFO(VFOManager::VFO* vfo) {
std::string name = "";
for (auto const& [_name, _vfo] : vfos) {
if (_vfo == vfo) {
name == _name;
name = _name;
break;
}
}