mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
17 lines
231 B
C++
17 lines
231 B
C++
#include "map.h"
|
|
#include "node.h"
|
|
|
|
namespace YAML
|
|
{
|
|
Map::Map()
|
|
{
|
|
}
|
|
|
|
Map::~Map()
|
|
{
|
|
for(node_map::const_iterator it=m_data.begin();it!=m_data.end();++it) {
|
|
delete it->first;
|
|
delete it->second;
|
|
}
|
|
}
|
|
}
|