aboutsummaryrefslogtreecommitdiffstats
path: root/src/address.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-02-05 10:51:39 +0100
committerVincent Richard <[email protected]>2005-02-05 10:51:39 +0100
commit95b56a703505e26f5457627934405c766ac926f5 (patch)
tree5406cf16c1bbdde6fe681ea302a743b5f1238d77 /src/address.cpp
parentRemoved extra '::' before numeric constants. (diff)
downloadvmime-95b56a703505e26f5457627934405c766ac926f5.tar.gz
vmime-95b56a703505e26f5457627934405c766ac926f5.zip
Moved 'static' functions into 'parserHelpers' class.
Diffstat (limited to 'src/address.cpp')
-rw-r--r--src/address.cpp2
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;