Remove useless const.
This commit is contained in:
parent
5e612210ef
commit
bdd328ac91
|
@ -40,7 +40,7 @@ using std::string;
|
|||
*
|
||||
* @since 0.4.0
|
||||
*/
|
||||
const string unescape_html(string html);
|
||||
string unescape_html(string html);
|
||||
|
||||
} // namespace mastodonpp
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user