{ should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces"
This commit is contained in:
parent
78444e20b9
commit
e1608f94a8
58 changed files with 323 additions and 403 deletions
|
@ -48,12 +48,12 @@ EventRef EventHandler::addEvent() {
|
|||
return event;
|
||||
}
|
||||
|
||||
bool EventHandler::listIsSignalled(){
|
||||
bool EventHandler::listIsSignalled() {
|
||||
TelldusCore::MutexLocker locker(&d->listMutex);
|
||||
|
||||
std::list<EventRef>::const_iterator it = d->eventList.begin();
|
||||
for(; it != d->eventList.end(); ++it) {
|
||||
if((*it)->isSignaled()){
|
||||
if((*it)->isSignaled()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue