mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
rm unusued typedef (#901)
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user