Code cleanup

This commit is contained in:
Alexander Bock
2017-06-09 16:09:58 -04:00
parent 03bec736ce
commit 4184740ce8
12 changed files with 269 additions and 220 deletions

View File

@@ -87,7 +87,7 @@ void SyncEngine::removeSyncable(Syncable* syncable) {
}
void SyncEngine::removeSyncables(const std::vector<Syncable*>& syncables) {
for (const auto& syncable : syncables) {
for (Syncable* syncable : syncables) {
removeSyncable(syncable);
}
}