1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 11:56:37 +02:00

Fix unnecessary uses of std::string.

This commit is contained in:
Sadie Powell
2024-03-18 12:42:41 +00:00
parent 60083834f8
commit 413fed474e
5 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -205,7 +205,7 @@ static Anope::string Hex(const char *data, size_t l)
{
const char hextable[] = "0123456789abcdef";
std::string rv;
Anope::string rv;
for (size_t i = 0; i < l; ++i)
{
unsigned char c = data[i];