yihao
yihao
When I look deeper, I found when I copy construct a YAML::Node from a previous Node, it will leak.
@jbeder It blocks our product release. Could you please take some time help to look at it?
@jkhoogland when I copy construct a YAML::Node from a previous Node, it will leak. -- I think it can be reproduced just by create a YAML::Node and copy it. The...
I haven't gone further after that. It is difficult for me to dive into the code. Do you have the interest on this issue? Need some help.
Hi, Jesse, We are using version 0.5.1 the version the leak is on. I did try the latest release but it seems there was some incompatibility that caused the yaml...
The minimum code snippet lists below. ``` #include #include #include int main() { std::string value = "Key: [{}]"; YAML::Node tmp; for (int i = 0; i < 1000000; ++i) {...