Mercurial > hg > orthanc
diff OrthancServer/OrthancRestApi/OrthancRestResources.cpp @ 1303:bba8a47922d1
cppcheck
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 10 Feb 2015 16:47:24 +0100 |
parents | 6e7e5ed91c2d |
children | 9ec7ac03152d |
line wrap: on
line diff
--- a/OrthancServer/OrthancRestApi/OrthancRestResources.cpp Tue Feb 10 16:33:57 2015 +0100 +++ b/OrthancServer/OrthancRestApi/OrthancRestResources.cpp Tue Feb 10 16:47:24 2015 +0100 @@ -626,7 +626,7 @@ shared = Json::objectValue; for (Instances::const_iterator it = instances.begin(); - it != instances.end(); it++) + it != instances.end(); ++it) { // Get the tags of the current instance, in the simplified format Json::Value tags; @@ -755,7 +755,7 @@ // Filter the tags of the instance according to the module Json::Value result = Json::objectValue; - for (ModuleTags::const_iterator tag = moduleTags.begin(); tag != moduleTags.end(); tag++) + for (ModuleTags::const_iterator tag = moduleTags.begin(); tag != moduleTags.end(); ++tag) { std::string s = tag->Format(); if (tags.isMember(s)) @@ -798,7 +798,7 @@ Json::Value result = Json::arrayValue; for (Resources::const_iterator it = resources.begin(); - it != resources.end(); it++) + it != resources.end(); ++it) { ResourceType type = it->first; const std::string& id = it->second; @@ -830,7 +830,7 @@ b.clear(); for (std::list<std::string>::const_iterator - it = a.begin(); it != a.end(); it++) + it = a.begin(); it != a.end(); ++it) { index.GetChildren(c, *it); b.splice(b.begin(), c); @@ -861,7 +861,7 @@ Json::Value result = Json::arrayValue; for (std::list<std::string>::const_iterator - it = a.begin(); it != a.end(); it++) + it = a.begin(); it != a.end(); ++it) { Json::Value item; @@ -890,7 +890,7 @@ Json::Value result = Json::objectValue; for (Instances::const_iterator it = instances.begin(); - it != instances.end(); it++) + it != instances.end(); ++it) { Json::Value full; context.ReadJson(full, *it);