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 89a0474a4..329f10469 100644
--- a/src/clientobject.cpp
+++ b/src/clientobject.cpp
@@ -42,8 +42,8 @@ ClientActiveObject* ClientActiveObject::create(ActiveObjectType type,
Client *client, ClientEnvironment *env)
{
// Find factory function
- UNORDERED_MAP<u16, Factory>::iterator n = m_types.find(type);
- if(n == m_types.end()) {
+ std::unordered_map<u16, Factory>::iterator n = m_types.find(type);
+ if (n == m_types.end()) {
// If factory is not found, just return.
warningstream << "ClientActiveObject: No factory for type="
<< (int)type << std::endl;
@@ -57,7 +57,7 @@ ClientActiveObject* ClientActiveObject::create(ActiveObjectType type,
void ClientActiveObject::registerType(u16 type, Factory f)
{
- UNORDERED_MAP<u16, Factory>::iterator n = m_types.find(type);
+ std::unordered_map<u16, Factory>::iterator n = m_types.find(type);
if(n != m_types.end())
return;
m_types[type] = f;