I see continuous increase in memory in the following snippet: ``` auto root = YAML::Load("{ x : 1 }"); while(1) { YAML::Node n; n.push_back(root["x"]); } ``` I see that m_pMemory->m_nodes increases with each iteration. Is this intended behavior?