diff options
Diffstat (limited to '')
-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 a9673bb9..14786d54 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 && isspace(buffer[pos])) + while (pos < end && parserHelpers::isspace(buffer[pos])) ++pos; const string::size_type start = pos; |