aboutsummaryrefslogtreecommitdiff
path: root/src/url.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/url.cpp')
-rw-r--r--src/url.cpp6
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
157void Bu::Url::parsePath( const Bu::FString &sPath )
158{
159 Bu::FString::const_iterator i = sPath.begin();
160 parsePath( i );
161}
162
157void Bu::Url::parsePath( Bu::FString::const_iterator &i ) 163void Bu::Url::parsePath( Bu::FString::const_iterator &i )
158{ 164{
159 if( i ) 165 if( i )