{ should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces"

This commit is contained in:
Micke Prag 2012-02-28 22:19:02 +01:00
parent 78444e20b9
commit e1608f94a8
58 changed files with 323 additions and 403 deletions

View file

@ -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;
}
}