From feb26e30c1b0c49c771d9c8d162d064af1f988cb Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Fri, 6 Apr 2018 11:30:10 +0100 Subject: C++17 Remove all boost things now in the standard library from uriParse. --- libadhocutil/uriParse.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libadhocutil/uriParse.h b/libadhocutil/uriParse.h index 0fa378a..0d8e302 100644 --- a/libadhocutil/uriParse.h +++ b/libadhocutil/uriParse.h @@ -3,7 +3,7 @@ #include "visibility.h" #include "exception.h" -#include +#include #include #include #include @@ -21,19 +21,19 @@ namespace AdHoc { /// The scheme. std::string scheme; /// The optional username. - boost::optional username; + std::optional username; /// The optional password. - boost::optional password; + std::optional password; /// The host. std::string host; /// The optional port. - boost::optional port; + std::optional port; /// The optional path. - boost::optional path; + std::optional path; /// The parsed components of the query string. std::multimap query; /// The optional fragment. - boost::optional fragment; + std::optional fragment; }; /** -- cgit v1.2.3