Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ uint64_t _parse_number(std::string::const_iterator& c, const std::string::const_
std::string::const_iterator s = c;
while (c != end and isdigit(*c)) ++c;
if (c > s) {
return std::stoull(std::string(s,c));
return std::stoull(std::wstring(s,c));
} else {
return 0;
}
Expand Down