summaryrefslogtreecommitdiff
path: root/src/face_registry.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2016-02-12 19:14:06 +0000
committerMaxime Coste <frrrwww@gmail.com>2016-02-12 19:14:06 +0000
commit6f65f4b3a534ea14c69d7febbf5dfb31e253c533 (patch)
treed1cfbae0da2f0c15aabdbc7373a10ff59dd2c9ad /src/face_registry.hh
parent0fc070298332ad979d6cfd9f8f79782f758df346 (diff)
Fix face completion, avoid a spurious temporary
Diffstat (limited to 'src/face_registry.hh')
-rw-r--r--src/face_registry.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/face_registry.hh b/src/face_registry.hh
index 67cb8b86..27879a85 100644
--- a/src/face_registry.hh
+++ b/src/face_registry.hh
@@ -29,7 +29,8 @@ private:
FaceOrAlias(Face face = Face{}) : face(face) {}
};
- UnorderedMap<String, FaceOrAlias, MemoryDomain::Faces> m_aliases;
+ using AliasMap = UnorderedMap<String, FaceOrAlias, MemoryDomain::Faces>;
+ AliasMap m_aliases;
};
inline Face get_face(const String& facedesc)