mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 20:03:47 +00:00
Fixed a return value in the Config multi-string parser.
This commit is contained in:
@@ -143,7 +143,7 @@ bool unescape_strings_cstyle(const std::string &str, std::vector<std::string> &o
|
|||||||
// Store the string into the output vector.
|
// Store the string into the output vector.
|
||||||
out.push_back(std::string(buf.data(), buf.size()));
|
out.push_back(std::string(buf.data(), buf.size()));
|
||||||
if (i == str.size())
|
if (i == str.size())
|
||||||
break;
|
return true;
|
||||||
// Skip white spaces.
|
// Skip white spaces.
|
||||||
c = str[i];
|
c = str[i];
|
||||||
while (c == ' ' || c == '\t') {
|
while (c == ' ' || c == '\t') {
|
||||||
|
|||||||
Reference in New Issue
Block a user