diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-07-04 01:26:17 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-07-04 01:26:17 -0700 |
commit | eb4fc0348b80c40101a4116149536497eb81e534 (patch) | |
tree | b67d5ba9a789eefb1e918556a12a904e4a25e854 /src | |
parent | ecda162ef14c3e8ab2790abc20ac9c750f465c3e (diff) |
Add missing "ok" return values in extracted methods
Diffstat (limited to 'src')
-rw-r--r-- | src/Uri.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Uri.cpp b/src/Uri.cpp index 53f4035..d719c75 100644 --- a/src/Uri.cpp +++ b/src/Uri.cpp @@ -588,6 +588,7 @@ namespace Uri { scheme = NormalizeCaseInsensitiveString(scheme); rest = uriString.substr(schemeEnd + 1); } + return true; } /** @@ -636,6 +637,7 @@ namespace Uri { hasPort = false; pathString = authorityAndPathString; } + return true; } /** |