From 2eeab86fdda48105b06b8091f59739559b8e9b56 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Wed, 3 Apr 2024 16:08:27 +0800 Subject: [PATCH] =?UTF-8?q?[21=5F5]=20Fix=20error:=20missing=20template=20?= =?UTF-8?q?arguments=20before=20=E2=80=98(=E2=80=99=20token?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lolly/data/string_view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lolly/data/string_view.hpp b/lolly/data/string_view.hpp index c25db9881..0d9847ac5 100644 --- a/lolly/data/string_view.hpp +++ b/lolly/data/string_view.hpp @@ -150,7 +150,7 @@ operator<= (const string_view& a, const string_view& b) { template bool operator<= (const string_view& a, const T (&b)[Nb]) { - return a <= string_view (b); + return a <= string_view (b); }; template