mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
Remove unnecessary return
statements
A new check in clang-tidy-18 catches this. I built it from source and ran it locally to find this.
This commit is contained in:
parent
9cd703aa10
commit
c919ad533d
@ -43,7 +43,7 @@ String Clipboard::getString()
|
||||
////////////////////////////////////////////////////////////
|
||||
void Clipboard::setString(const String& text)
|
||||
{
|
||||
return priv::ClipboardImpl::setString(text);
|
||||
priv::ClipboardImpl::setString(text);
|
||||
}
|
||||
|
||||
} // namespace sf
|
||||
|
@ -79,7 +79,7 @@ Joystick::Identification Joystick::getIdentification(unsigned int joystick)
|
||||
////////////////////////////////////////////////////////////
|
||||
void Joystick::update()
|
||||
{
|
||||
return priv::JoystickManager::getInstance().update();
|
||||
priv::JoystickManager::getInstance().update();
|
||||
}
|
||||
|
||||
} // namespace sf
|
||||
|
@ -41,7 +41,7 @@ bool Sensor::isAvailable(Type sensor)
|
||||
////////////////////////////////////////////////////////////
|
||||
void Sensor::setEnabled(Type sensor, bool enabled)
|
||||
{
|
||||
return priv::SensorManager::getInstance().setEnabled(sensor, enabled);
|
||||
priv::SensorManager::getInstance().setEnabled(sensor, enabled);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
|
@ -134,7 +134,7 @@
|
||||
////////////////////////////////////////////////////////
|
||||
- (void)setCursor:(NSCursor*)cursor
|
||||
{
|
||||
return [m_oglView setCursor:cursor];
|
||||
[m_oglView setCursor:cursor];
|
||||
}
|
||||
|
||||
|
||||
|
@ -375,7 +375,7 @@
|
||||
////////////////////////////////////////////////////////
|
||||
- (void)setCursor:(NSCursor*)cursor
|
||||
{
|
||||
return [m_oglView setCursor:cursor];
|
||||
[m_oglView setCursor:cursor];
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user