From 314bcb7bc3570742bb75d354912a7e633f6db03e Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 27 Jul 2023 21:18:58 +0100 Subject: PathElements can be string_views --- icespider/common/pathparts.h | 2 +- icespider/core/ihttpRequest.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/icespider/common/pathparts.h b/icespider/common/pathparts.h index c24360c..0053562 100644 --- a/icespider/common/pathparts.h +++ b/icespider/common/pathparts.h @@ -8,7 +8,7 @@ #include namespace IceSpider { - using PathElements = std::vector; + using PathElements = std::vector; class DLL_PUBLIC PathPart { public: diff --git a/icespider/core/ihttpRequest.h b/icespider/core/ihttpRequest.h index 25b5e00..451fe67 100644 --- a/icespider/core/ihttpRequest.h +++ b/icespider/core/ihttpRequest.h @@ -29,7 +29,7 @@ namespace IceSpider { }; using Accepted = std::vector; - using PathElements = std::vector; + using PathElements = std::vector; using OptionalString = std::optional; using ContentTypeSerializer = std::pair; -- cgit v1.2.3