From eb4fc0348b80c40101a4116149536497eb81e534 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Wed, 4 Jul 2018 01:26:17 -0700 Subject: Add missing "ok" return values in extracted methods --- src/Uri.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; } /** -- cgit v1.2.3