Skip to content

Commit

Permalink
rm unusued typedef (jbeder#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipDeegan authored Jun 21, 2020
1 parent 5a9ab17 commit 97d1ae5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion include/yaml-cpp/stlemitter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 97d1ae5

Please sign in to comment.