diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-18 12:42:41 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-18 12:47:43 +0000 |
commit | 413fed474e7fbdc10128482284700f0fad41e31a (patch) | |
tree | 94b7d1ab522911c4c635f3b9cdd8a274fc6aee0c /modules | |
parent | 60083834f802456382ffc63f0c908db3e2676feb (diff) |
Fix unnecessary uses of std::string.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/database/db_old.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp index 55252177a..1cb4a699a 100644 --- a/modules/database/db_old.cpp +++ b/modules/database/db_old.cpp @@ -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]; |