diff --git a/include/yaml-cpp/stlemitter.h b/include/yaml-cpp/stlemitter.h index 8dacf97..9cba257 100644 --- a/include/yaml-cpp/stlemitter.h +++ b/include/yaml-cpp/stlemitter.h @@ -39,7 +39,6 @@ inline Emitter& operator<<(Emitter& emitter, const std::set& v) { template inline Emitter& operator<<(Emitter& emitter, const std::map& m) { - typedef typename std::map map; emitter << BeginMap; for (const auto& emit : m) emitter << Key << emit.first << Value << emit.second;