This commit is contained in:
gabime 2016-08-26 00:38:08 +03:00
parent cb75569541
commit 8cf39857ab
1 changed files with 636 additions and 636 deletions

View File

@ -319,21 +319,21 @@ public:
// it is very fast (already stored in tm.tm_gmtoff) // it is very fast (already stored in tm.tm_gmtoff)
int total_minutes = os::utc_minutes_offset(tm_time); int total_minutes = os::utc_minutes_offset(tm_time);
#endif #endif
bool is_negative = total_minutes < 0; bool is_negative = total_minutes < 0;
char sign; char sign;
if (is_negative) if (is_negative)
{ {
total_minutes = -total_minutes; total_minutes = -total_minutes;
sign = '-'; sign = '-';
} }
else else
{ {
sign = '+'; sign = '+';
} }
int h = total_minutes / 60; int h = total_minutes / 60;
int m = total_minutes % 60; int m = total_minutes % 60;
msg.formatted << sign; msg.formatted << sign;
pad_n_join(msg.formatted, h, m, ':'); pad_n_join(msg.formatted, h, m, ':');
} }
private: private: