From d537c1ffe93aea71703b21b5094ae9c9d4cad13e Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 19 Aug 2022 22:56:33 +0200 Subject: [PATCH] malloy::http::sessions::session_storage::storage_get(): fix incorrect return type --- lib/malloy/core/http/session/session.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/malloy/core/http/session/session.hpp b/lib/malloy/core/http/session/session.hpp index 2a3357f..9708755 100644 --- a/lib/malloy/core/http/session/session.hpp +++ b/lib/malloy/core/http/session/session.hpp @@ -189,7 +189,7 @@ namespace malloy::http::sessions */ [[nodiscard]] virtual - std::optional + std::optional storage_get(const key_type& key) const = 0; /**