summaryrefslogtreecommitdiff
path: root/src/clientobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/clientobject.cpp')
-rw-r--r--src/clientobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/clientobject.cpp b/src/clientobject.cpp
index 329f10469..f4b69201b 100644
--- a/src/clientobject.cpp
+++ b/src/clientobject.cpp
@@ -42,7 +42,7 @@ ClientActiveObject* ClientActiveObject::create(ActiveObjectType type,
Client *client, ClientEnvironment *env)
{
// Find factory function
- std::unordered_map<u16, Factory>::iterator n = m_types.find(type);
+ auto n = m_types.find(type);
if (n == m_types.end()) {
// If factory is not found, just return.
warningstream << "ClientActiveObject: No factory for type="
@@ -57,8 +57,8 @@ ClientActiveObject* ClientActiveObject::create(ActiveObjectType type,
void ClientActiveObject::registerType(u16 type, Factory f)
{
- std::unordered_map<u16, Factory>::iterator n = m_types.find(type);
- if(n != m_types.end())
+ auto n = m_types.find(type);
+ if (n != m_types.end())
return;
m_types[type] = f;
}