Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit cea9fe7

Browse files
committed
Merge pull request #350 from dawagner/remove-useless-returns
Remove some useless 'return's in void functions
2 parents 4d3b719 + f3ec327 commit cea9fe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parameter/ParameterMgrFullConnector.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ bool CParameterMgrFullConnector::isTuningModeOn() const
7777

7878
void CParameterMgrFullConnector::setValueSpace(bool bIsRaw)
7979
{
80-
return _pParameterMgr->setValueSpace(bIsRaw);
80+
_pParameterMgr->setValueSpace(bIsRaw);
8181
}
8282

8383
bool CParameterMgrFullConnector::isValueSpaceRaw() const
@@ -87,7 +87,7 @@ bool CParameterMgrFullConnector::isValueSpaceRaw() const
8787

8888
void CParameterMgrFullConnector::setOutputRawFormat(bool bIsHex)
8989
{
90-
return _pParameterMgr->setOutputRawFormat(bIsHex);
90+
_pParameterMgr->setOutputRawFormat(bIsHex);
9191
}
9292

9393
bool CParameterMgrFullConnector::isOutputRawFormatHex() const

0 commit comments

Comments
 (0)