1
0
Fork 0

version update after return statement

This commit is contained in:
Kaveh Vahedipour 2016-11-03 11:18:50 +01:00
parent 266ee69535
commit 9e170e8021
1 changed files with 1 additions and 1 deletions

View File

@ -206,8 +206,8 @@ bool config_t::activePushBack(std::string const& id) {
WRITE_LOCKER(writeLocker, _lock);
if (_active.size() < _agencySize) {
_active.push_back(id);
return true;
++_version;
return true;
}
return false;
}