Fix whitespace

This commit is contained in:
Foaly 2013-08-11 23:44:39 +02:00
parent 0c0b3c2a3a
commit 5feca74178

View File

@ -236,12 +236,14 @@ Time& operator /=(Time& left, Int64 right)
return left = left / right;
}
////////////////////////////////////////////////////////////
Time operator %(Time left, Time right)
{
return microseconds(left.asMicroseconds() % right.asMicroseconds());
}
////////////////////////////////////////////////////////////
Time& operator %=(Time& left, Time right)
{