diff options
Diffstat (limited to '')
-rw-r--r-- | src/url.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/url.cpp b/src/url.cpp index 251e678..7f03043 100644 --- a/src/url.cpp +++ b/src/url.cpp | |||
@@ -154,6 +154,12 @@ void Bu::Url::parseHost( Bu::FString::const_iterator &i ) | |||
154 | i = s; | 154 | i = s; |
155 | } | 155 | } |
156 | 156 | ||
157 | void Bu::Url::parsePath( const Bu::FString &sPath ) | ||
158 | { | ||
159 | Bu::FString::const_iterator i = sPath.begin(); | ||
160 | parsePath( i ); | ||
161 | } | ||
162 | |||
157 | void Bu::Url::parsePath( Bu::FString::const_iterator &i ) | 163 | void Bu::Url::parsePath( Bu::FString::const_iterator &i ) |
158 | { | 164 | { |
159 | if( i ) | 165 | if( i ) |