mirror of
https://github.com/anope/anope.git
synced 2026-07-03 19:43:12 +02:00
Use auto in as many places as possible.
This commit is contained in:
+1
-1
@@ -74,7 +74,7 @@ void IdentifyRequest::Dispatch()
|
||||
|
||||
void IdentifyRequest::ModuleUnload(Module *m)
|
||||
{
|
||||
for (std::set<IdentifyRequest *>::iterator it = Requests.begin(), it_end = Requests.end(); it != it_end;)
|
||||
for (auto it = Requests.begin(), it_end = Requests.end(); it != it_end;)
|
||||
{
|
||||
IdentifyRequest *ir = *it;
|
||||
++it;
|
||||
|
||||
Reference in New Issue
Block a user