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

Remove some useless 'return's in void functions #350

Merged
merged 1 commit into from
Feb 4, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions parameter/ParameterMgrFullConnector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ bool CParameterMgrFullConnector::isTuningModeOn() const

void CParameterMgrFullConnector::setValueSpace(bool bIsRaw)
{
return _pParameterMgr->setValueSpace(bIsRaw);
_pParameterMgr->setValueSpace(bIsRaw);
}

bool CParameterMgrFullConnector::isValueSpaceRaw() const
Expand All @@ -87,7 +87,7 @@ bool CParameterMgrFullConnector::isValueSpaceRaw() const

void CParameterMgrFullConnector::setOutputRawFormat(bool bIsHex)
{
return _pParameterMgr->setOutputRawFormat(bIsHex);
_pParameterMgr->setOutputRawFormat(bIsHex);
}

bool CParameterMgrFullConnector::isOutputRawFormatHex() const
Expand Down