quieting clang-tidy, non-functional changes

Changes to syntax which should not effect generated code
This commit is contained in:
Michael Davidsaver
2023-08-28 14:17:00 +02:00
parent d97943b697
commit 1595ed8860
18 changed files with 17 additions and 46 deletions
+2 -8
View File
@@ -275,18 +275,12 @@ void epicsThread::setPriority (unsigned int priority) throw ()
bool epicsThread::priorityIsEqual (const epicsThread &otherThread) const throw ()
{
if ( epicsThreadIsEqual (this->id, otherThread.id) ) {
return true;
}
return false;
return epicsThreadIsEqual (this->id, otherThread.id)!=0;
}
bool epicsThread::isSuspended () const throw ()
{
if ( epicsThreadIsSuspended (this->id) ) {
return true;
}
return false;
return epicsThreadIsSuspended (this->id)!=0;
}
bool epicsThread::operator == (const epicsThread &rhs) const throw ()