summaryrefslogtreecommitdiffstats
path: root/common/storage/entitystore.cpp
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-12 16:12:05 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-12 16:12:05 +0100
commita48edff7a21ef6426baa1cc6eca501930cb35645 (patch)
treee32f567657e6114ac17a4af7546e55df58a094c9 /common/storage/entitystore.cpp
parent1d9e0016d63f9b5d86d54cfa0f396d3ea24a2db6 (diff)
downloadsink-a48edff7a21ef6426baa1cc6eca501930cb35645.tar.gz
sink-a48edff7a21ef6426baa1cc6eca501930cb35645.zip
Fixed build issues with pedantic enabled
Diffstat (limited to 'common/storage/entitystore.cpp')
-rw-r--r--common/storage/entitystore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/storage/entitystore.cpp b/common/storage/entitystore.cpp
index 055499c..b1b3c86 100644
--- a/common/storage/entitystore.cpp
+++ b/common/storage/entitystore.cpp
@@ -228,7 +228,7 @@ bool EntityStore::modify(const QByteArray &type, const ApplicationDomain::Applic
228 } 228 }
229 229
230 // Remove deletions 230 // Remove deletions
231 for (const auto property : deletions) { 231 for (const auto &property : deletions) {
232 //SinkTrace() << "Removing property: " << property; 232 //SinkTrace() << "Removing property: " << property;
233 newEntity.setProperty(property, QVariant()); 233 newEntity.setProperty(property, QVariant());
234 } 234 }