We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d37891 commit a3ee6d0Copy full SHA for a3ee6d0
1 file changed
lib/pathmatch.h
@@ -222,14 +222,14 @@ class PathMatch::PathIterator {
222
/* Consume remaining characters into an std::string and reverse, use for testing */
223
std::string read()
224
{
225
- std::string s;
+ std::string str;
226
227
while (current() != '\0') {
228
- s.insert(0, 1, current());
+ str.insert(0, 1, current());
229
advance();
230
}
231
232
- return s;
+ return str;
233
234
235
private:
0 commit comments