diff options
Diffstat (limited to 'src/address.cpp')
-rw-r--r-- | src/address.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/address.cpp b/src/address.cpp index cf13a007..7b63125b 100644 --- a/src/address.cpp +++ b/src/address.cpp @@ -74,7 +74,7 @@ address* address::parseNext(const string& buffer, const string::size_type positi string::size_type pos = position; - while (pos < end && parserHelpers::isspace(buffer[pos])) + while (pos < end && parserHelpers::isSpace(buffer[pos])) ++pos; const string::size_type start = pos; |