1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

💡 add comment to describe j.m_value.destroy(j.m_type) calls

This commit is contained in:
Niels Lohmann
2021-07-15 20:34:50 +02:00
parent f6863e062c
commit ecaac22656
2 changed files with 14 additions and 0 deletions

View File

@ -4480,6 +4480,13 @@ namespace detail
// constructors //
//////////////////
/*
* Note all external_constructor<>::construct functions need to call
* j.m_value.destroy(j.m_type) to avoid a memory leak in case j contains an
* allocated value (e.g., a string). See bug issue
* https://github.com/nlohmann/json/issues/2865 for more information.
*/
template<value_t> struct external_constructor;
template<>