- ISO8601 periods contain uppercase characters.
This commit is contained in:
Paul Beckingham 2014-06-10 23:09:41 -04:00
parent bd53dd2aeb
commit 9a74fbe4a9

View file

@ -1574,9 +1574,9 @@ Variant::operator std::string () const
if (hours || minutes || seconds)
{
s << 'T';
if (hours) s << hours << 'h';
if (minutes) s << minutes << 'm';
if (seconds) s << seconds << 's';
if (hours) s << hours << 'H';
if (minutes) s << minutes << 'M';
if (seconds) s << seconds << 'S';
}
return s.str ();