diff options
author | Adam <Adam@anope.org> | 2017-10-08 12:46:05 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-10-08 12:46:05 -0400 |
commit | 50f7429fda7cb3ffd8c34abb0a13f3dcc929f2ed (patch) | |
tree | e8e65cb6e1fed5aebf0b252954e9f40747ac7f4a /modules/database/sql.cpp | |
parent | 1e52b087139ceb33b114a7fa20a2c6d3d453d371 (diff) |
Fix some compiler warnings
Diffstat (limited to 'modules/database/sql.cpp')
-rw-r--r-- | modules/database/sql.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/database/sql.cpp b/modules/database/sql.cpp index b14674b44..d0835be44 100644 --- a/modules/database/sql.cpp +++ b/modules/database/sql.cpp @@ -205,8 +205,8 @@ class DBSQL : public Module, public Pipe if (type == nullptr) { - for (Serialize::TypeBase *type : Serialize::TypeBase::GetTypes()) - GetRefs(object, type, edges); + for (Serialize::TypeBase *t : Serialize::TypeBase::GetTypes()) + GetRefs(object, t, edges); } else { |