Skip to content
Snippets Groups Projects
Commit 76a347ed authored by Cinder's avatar Cinder
Browse files

Soothe MSVC with more explicit formatting parameters

parent 896c222d
Branches
Tags
No related merge requests found
...@@ -205,7 +205,7 @@ bool LLDate::fromStream(std::istream& s) ...@@ -205,7 +205,7 @@ bool LLDate::fromStream(std::istream& s)
// Isn't stdlib nice? // Isn't stdlib nice?
s.imbue(std::locale(sPrevLocale)); s.imbue(std::locale(sPrevLocale));
s >> std::get_time(&time, "%FT%T"); s >> std::get_time(&time, "%Y-%m-%dT%H:%M:%S");
if (s.fail()) if (s.fail())
{ {
return false; return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment