Unverified Commit 97d1ae54 authored by Dekken's avatar Dekken Committed by GitHub
Browse files

rm unusued typedef (#901)

parent 5a9ab177
...@@ -39,7 +39,6 @@ inline Emitter& operator<<(Emitter& emitter, const std::set<T>& v) { ...@@ -39,7 +39,6 @@ inline Emitter& operator<<(Emitter& emitter, const std::set<T>& v) {
template <typename K, typename V> template <typename K, typename V>
inline Emitter& operator<<(Emitter& emitter, const std::map<K, V>& m) { inline Emitter& operator<<(Emitter& emitter, const std::map<K, V>& m) {
typedef typename std::map<K, V> map;
emitter << BeginMap; emitter << BeginMap;
for (const auto& emit : m) for (const auto& emit : m)
emitter << Key << emit.first << Value << emit.second; emitter << Key << emit.first << Value << emit.second;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment