aboutsummaryrefslogtreecommitdiff
path: root/src/Uri.cpp
diff options
context:
space:
mode:
authorRichard Walters <rwalters@digitalstirling.com>2018-07-04 01:26:17 -0700
committerRichard Walters <rwalters@digitalstirling.com>2018-07-04 01:26:17 -0700
commiteb4fc0348b80c40101a4116149536497eb81e534 (patch)
treeb67d5ba9a789eefb1e918556a12a904e4a25e854 /src/Uri.cpp
parentecda162ef14c3e8ab2790abc20ac9c750f465c3e (diff)
Add missing "ok" return values in extracted methods
Diffstat (limited to 'src/Uri.cpp')
-rw-r--r--src/Uri.cpp2
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;
}
/**