From ade6af8698134c8a87427a35dd071d841e9433e3 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 9 Dec 2023 00:49:37 -0600 Subject: [PATCH] [ox] Add optional typename to satisfy clangd --- deps/ox/src/ox/std/stringview.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/ox/src/ox/std/stringview.hpp b/deps/ox/src/ox/std/stringview.hpp index 62dd6623..22a269fa 100644 --- a/deps/ox/src/ox/std/stringview.hpp +++ b/deps/ox/src/ox/std/stringview.hpp @@ -109,7 +109,7 @@ struct MaybeSV { using type = ox::StringView; }; template -using MaybeSV_t = MaybeSV::type; +using MaybeSV_t = typename MaybeSV::type; }