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