Remove useless const.

This commit is contained in:
tastytea 2020-01-16 18:19:47 +01:00
parent 5e612210ef
commit bdd328ac91
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ using std::string;
*
* @since 0.4.0
*/
const string unescape_html(string html);
string unescape_html(string html);
} // namespace mastodonpp

View File

@ -37,7 +37,7 @@ using std::string_view;
using std::move;
using std::pair;
const string unescape_html(string html)
string unescape_html(string html)
{
string buffer{move(html)};
string output;