Minor clean up: msvc warnings/include order/comment text.
Change-Id: I2b54abcb9f535715d8713930942447c0b0f5f862
This commit is contained in:
@@ -686,8 +686,8 @@ Time& Time::presentation(presentation_t d) {
|
||||
return *this;
|
||||
}
|
||||
|
||||
seconds = d / 1000;
|
||||
milliseconds = d - 1000 * seconds;
|
||||
seconds = static_cast<int>(d / 1000);
|
||||
milliseconds = static_cast<int>(d - 1000 * seconds);
|
||||
|
||||
minutes = seconds / 60;
|
||||
seconds -= 60 * minutes;
|
||||
|
||||
Reference in New Issue
Block a user