From e40140fb038b9686837d08022d0c5a67805665e9 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 28 Oct 2019 06:46:58 +0100 Subject: [PATCH] Remove unnecessary const in function declaration. --- include/uri.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uri.hpp b/include/uri.hpp index 54b2dce..c317f74 100644 --- a/include/uri.hpp +++ b/include/uri.hpp @@ -170,7 +170,7 @@ protected: * * @since 0.8.5 */ - string cut_text(const string &text, const uint16_t n_chars) const; + string cut_text(const string &text, uint16_t n_chars) const; }; } // namespace remwharead