Variant
- ISO8601 periods contain uppercase characters.
This commit is contained in:
@@ -1574,9 +1574,9 @@ Variant::operator std::string () const
|
|||||||
if (hours || minutes || seconds)
|
if (hours || minutes || seconds)
|
||||||
{
|
{
|
||||||
s << 'T';
|
s << 'T';
|
||||||
if (hours) s << hours << 'h';
|
if (hours) s << hours << 'H';
|
||||||
if (minutes) s << minutes << 'm';
|
if (minutes) s << minutes << 'M';
|
||||||
if (seconds) s << seconds << 's';
|
if (seconds) s << seconds << 'S';
|
||||||
}
|
}
|
||||||
|
|
||||||
return s.str ();
|
return s.str ();
|
||||||
|
|||||||
Reference in New Issue
Block a user