diff options
author | Max Kellermann <max@duempel.org> | 2014-08-07 14:53:07 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-07 16:08:02 +0200 |
commit | 87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802 (patch) | |
tree | 9f2170889dfbfff90816d7d4eea7b19373ba213f /src/util/Tokenizer.cxx | |
parent | db6db517424e09bab9a12934e9df6807a7049926 (diff) | |
download | mpd-87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802.tar.gz mpd-87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802.tar.xz mpd-87bcf739ee6a3e8ac5b400b35b61b72b9d8bd802.zip |
util/StringUtil: rename strchug_fast() to StripLeft()
Diffstat (limited to '')
-rw-r--r-- | src/util/Tokenizer.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/Tokenizer.cxx b/src/util/Tokenizer.cxx index 306a90074..19322b70d 100644 --- a/src/util/Tokenizer.cxx +++ b/src/util/Tokenizer.cxx @@ -71,7 +71,7 @@ Tokenizer::NextWord(Error &error) /* a whitespace: the word ends here */ *input = 0; /* skip all following spaces, too */ - input = strchug_fast(input + 1); + input = StripLeft(input + 1); break; } @@ -116,7 +116,7 @@ Tokenizer::NextUnquoted(Error &error) /* a whitespace: the word ends here */ *input = 0; /* skip all following spaces, too */ - input = strchug_fast(input + 1); + input = StripLeft(input + 1); break; } @@ -185,7 +185,7 @@ Tokenizer::NextString(Error &error) /* finish the string and return it */ *dest = 0; - input = strchug_fast(input); + input = StripLeft(input); return word; } |