comparison OrthancServer/Scheduler/ServerCommandInstance.cpp @ 1304:7b6925b0890d

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Feb 2015 17:03:17 +0100
parents 6e7e5ed91c2d
children 0a2ad4a6858f
comparison
equal deleted inserted replaced
1303:bba8a47922d1 1304:7b6925b0890d
58 listener.SignalFailure(jobId_); 58 listener.SignalFailure(jobId_);
59 return true; 59 return true;
60 } 60 }
61 61
62 for (std::list<ServerCommandInstance*>::iterator 62 for (std::list<ServerCommandInstance*>::iterator
63 it = next_.begin(); it != next_.end(); it++) 63 it = next_.begin(); it != next_.end(); ++it)
64 { 64 {
65 for (ListOfStrings::const_iterator 65 for (ListOfStrings::const_iterator
66 output = outputs.begin(); output != outputs.end(); output++) 66 output = outputs.begin(); output != outputs.end(); ++output)
67 { 67 {
68 (*it)->AddInput(*output); 68 (*it)->AddInput(*output);
69 } 69 }
70 } 70 }
71 71