mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +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)
|
void Clipboard::setString(const String& text)
|
||||||
{
|
{
|
||||||
return priv::ClipboardImpl::setString(text);
|
priv::ClipboardImpl::setString(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
@ -79,7 +79,7 @@ Joystick::Identification Joystick::getIdentification(unsigned int joystick)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void Joystick::update()
|
void Joystick::update()
|
||||||
{
|
{
|
||||||
return priv::JoystickManager::getInstance().update();
|
priv::JoystickManager::getInstance().update();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
@ -41,7 +41,7 @@ bool Sensor::isAvailable(Type sensor)
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
void Sensor::setEnabled(Type sensor, bool enabled)
|
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
|
- (void)setCursor:(NSCursor*)cursor
|
||||||
{
|
{
|
||||||
return [m_oglView setCursor:cursor];
|
[m_oglView setCursor:cursor];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -375,7 +375,7 @@
|
|||||||
////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////
|
||||||
- (void)setCursor:(NSCursor*)cursor
|
- (void)setCursor:(NSCursor*)cursor
|
||||||
{
|
{
|
||||||
return [m_oglView setCursor:cursor];
|
[m_oglView setCursor:cursor];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user