diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-07-13 14:43:37 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-07-13 14:43:37 +0200 |
commit | a3c3fb61e08523a563ce3cba86dc50c9c5fc2c5d (patch) | |
tree | d2d8737bb7758fbf521909a367e9188b9c5690f6 /common/store.cpp | |
parent | 60965ca1431b2b3bed4f49e6bf1a9d5e5d86a3d9 (diff) | |
download | sink-a3c3fb61e08523a563ce3cba86dc50c9c5fc2c5d.tar.gz sink-a3c3fb61e08523a563ce3cba86dc50c9c5fc2c5d.zip |
Fixed new diagnostics errors
Diffstat (limited to 'common/store.cpp')
-rw-r--r-- | common/store.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/store.cpp b/common/store.cpp index 363878c..07f41f8 100644 --- a/common/store.cpp +++ b/common/store.cpp | |||
@@ -360,7 +360,7 @@ QList<DomainType> Store::read(const Sink::Query &q) | |||
360 | SinkTrace() << "Found value: " << value->identifier(); | 360 | SinkTrace() << "Found value: " << value->identifier(); |
361 | list << *value; | 361 | list << *value; |
362 | }); | 362 | }); |
363 | for (const auto resourceInstanceIdentifier : resources.keys()) { | 363 | for (const auto &resourceInstanceIdentifier : resources.keys()) { |
364 | const auto resourceType = resources.value(resourceInstanceIdentifier); | 364 | const auto resourceType = resources.value(resourceInstanceIdentifier); |
365 | SinkTrace() << "Looking for " << resourceType << resourceInstanceIdentifier; | 365 | SinkTrace() << "Looking for " << resourceType << resourceInstanceIdentifier; |
366 | auto facade = FacadeFactory::instance().getFacade<DomainType>(resourceType, resourceInstanceIdentifier); | 366 | auto facade = FacadeFactory::instance().getFacade<DomainType>(resourceType, resourceInstanceIdentifier); |