diff options
| author | Vincent Richard <[email protected]> | 2005-02-05 10:51:39 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-02-05 10:51:39 +0100 |
| commit | 95b56a703505e26f5457627934405c766ac926f5 (patch) | |
| tree | 5406cf16c1bbdde6fe681ea302a743b5f1238d77 /src/address.cpp | |
| parent | Removed extra '::' before numeric constants. (diff) | |
| download | vmime-95b56a703505e26f5457627934405c766ac926f5.tar.gz vmime-95b56a703505e26f5457627934405c766ac926f5.zip | |
Moved 'static' functions into 'parserHelpers' class.
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 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; |
