mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-12 21:29:00 +08:00
Fixed a return value in the Config multi-string parser.
This commit is contained in:
parent
c93ac84f5e
commit
cc01e6565d
@ -154,7 +154,7 @@ bool unescape_strings_cstyle(const std::string &str, std::vector<std::string> &o
|
||||
// Store the string into the output vector.
|
||||
out.push_back(std::string(buf.data(), buf.size()));
|
||||
if (i == str.size())
|
||||
break;
|
||||
return true;
|
||||
// Skip white spaces.
|
||||
c = str[i];
|
||||
while (c == ' ' || c == '\t') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user