rm unusued typedef (#901)

This commit is contained in:
Dekken 2020-06-21 14:58:16 +02:00 committed by GitHub
parent 5a9ab177ba
commit 97d1ae547c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,6 @@ inline Emitter& operator<<(Emitter& emitter, const std::set<T>& v) {
template <typename K, typename V>
inline Emitter& operator<<(Emitter& emitter, const std::map<K, V>& m) {
typedef typename std::map<K, V> map;
emitter << BeginMap;
for (const auto& emit : m)
emitter << Key << emit.first << Value << emit.second;