Added half of the std::map conversion (we don't have reading from Values yet)

This commit is contained in:
Jesse Beder
2011-09-08 02:10:04 -05:00
parent 0e197b8723
commit 6ffc9ac788
3 changed files with 24 additions and 9 deletions

View File

@@ -2,13 +2,4 @@
namespace YAML
{
//
// template<typename K, typename V>
// Value convert<std::map<K, V> >(const std::map<K, V>& rhs) {
// Value value(ValueType::Map);
// for(std::map<K, V>::const_iterator it=rhs.begin();it!=rhs.end();++it)
// value[it->first] = it->second;
// return value;
// }
}