From ac75a3d1c6d35497700eed62b6f14197a12a1ec2 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 15 Jan 2019 00:49:09 +0000 Subject: Fix optional type of getBodyParam --- icespider/core/ihttpRequest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icespider/core/ihttpRequest.h b/icespider/core/ihttpRequest.h index aaa9d50..40f02c7 100644 --- a/icespider/core/ihttpRequest.h +++ b/icespider/core/ihttpRequest.h @@ -49,7 +49,7 @@ namespace IceSpider { return Slicer::DeserializeAnyWith(getDeserializer()); } template - std::optional getBodyParam(const Ice::optional & map, const std::string_view & key) const + std::optional getBodyParam(const std::optional & map, const std::string_view & key) const { if (!map) { return {}; -- cgit v1.2.3