From 29569d7b526c65029ca2549ec354fa113710b84c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 6 Dec 2024 11:11:02 +0200 Subject: Adapt to renaming of some ucase, lcase, and sanitize_identifier function overloads --- bbot/agent/http-service.cxx | 2 +- bbot/utility.hxx | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bbot/agent/http-service.cxx b/bbot/agent/http-service.cxx index 3214885..23a2678 100644 --- a/bbot/agent/http-service.cxx +++ b/bbot/agent/http-service.cxx @@ -350,7 +350,7 @@ namespace bbot message = "HTTP status code " + to_string (rs.code); if (!rs.reason.empty ()) - message += " (" + lcase (rs.reason) + ')'; + message += " (" + make_lcase (rs.reason) + ')'; } if (location) diff --git a/bbot/utility.hxx b/bbot/utility.hxx index 7758db4..1847568 100644 --- a/bbot/utility.hxx +++ b/bbot/utility.hxx @@ -36,6 +36,10 @@ namespace bbot // // + using butl::ucase; + using butl::make_ucase; + using butl::lcase; + using butl::make_lcase; using butl::icasecmp; using butl::sanitize_identifier; using butl::reverse_iterate; -- cgit v1.1