diff options
| -rw-r--r-- | icespider/core/ihttpRequest.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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<T>(getDeserializer());  			}  			template<typename T> -			std::optional<T> getBodyParam(const Ice::optional<IceSpider::StringMap> & map, const std::string_view & key) const +			std::optional<T> getBodyParam(const std::optional<IceSpider::StringMap> & map, const std::string_view & key) const  			{  				if (!map) {  					return {}; | 
