diff options
author | Sadie Powell <sadie@witchery.services> | 2024-07-05 16:19:58 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-07-08 00:53:47 +0100 |
commit | 347d82f59bf12a6695e14d050d7096accca542c5 (patch) | |
tree | 8f717250cd2b7cada45d017db49b2cd5a1be8603 | |
parent | fe68f40634d0bf4e3ebdbbc1d668f5ed33c6dbab (diff) |
Qualify a use of auto in db_atheme.
-rw-r--r-- | modules/database/db_atheme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/database/db_atheme.cpp b/modules/database/db_atheme.cpp index 97b1af50f..a62571b4b 100644 --- a/modules/database/db_atheme.cpp +++ b/modules/database/db_atheme.cpp @@ -1393,7 +1393,7 @@ private: return false; } - auto ot = OperType::Find(type); + auto *ot = OperType::Find(type); if (!ot) { // Attempt to convert oper types. |