Slight typo
This commit is contained in:
@@ -77,7 +77,7 @@ static inline std::string parseString(const char*& token)
|
|||||||
std::string s;
|
std::string s;
|
||||||
token += strspn(token, " \t");
|
token += strspn(token, " \t");
|
||||||
int e = strcspn(token, " \t\r");
|
int e = strcspn(token, " \t\r");
|
||||||
s = std::string(&token, &token[e]);
|
s = std::string(token, &token[e]);
|
||||||
token += e;
|
token += e;
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user