mirror of
https://github.com/SFML/SFML.git
synced 2025-01-19 15:55:13 +08:00
Fix whitespace
This commit is contained in:
parent
0c0b3c2a3a
commit
5feca74178
@ -236,12 +236,14 @@ Time& operator /=(Time& left, Int64 right)
|
|||||||
return left = left / right;
|
return left = left / right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Time operator %(Time left, Time right)
|
Time operator %(Time left, Time right)
|
||||||
{
|
{
|
||||||
return microseconds(left.asMicroseconds() % right.asMicroseconds());
|
return microseconds(left.asMicroseconds() % right.asMicroseconds());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
Time& operator %=(Time& left, Time right)
|
Time& operator %=(Time& left, Time right)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user