stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=491a9a5bf842d151b1e2138a4b2f1b9d17f7b085

commit 491a9a5bf842d151b1e2138a4b2f1b9d17f7b085
Author: Felipe Magno de Almeida <fel...@expertisesolutions.com.br>
Date:   Thu Aug 15 20:48:01 2019 +0000

    eolian-mono: Use correct allocator to free with free, and not delete
    
    T8137
    Differential Revision: https://phab.enlightenment.org/D9576
---
 src/lib/eolian_cxx/grammar/klass_def.hpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/lib/eolian_cxx/grammar/klass_def.hpp 
b/src/lib/eolian_cxx/grammar/klass_def.hpp
index 4d6d4ea79f..f96595bdc3 100644
--- a/src/lib/eolian_cxx/grammar/klass_def.hpp
+++ b/src/lib/eolian_cxx/grammar/klass_def.hpp
@@ -260,7 +260,8 @@ struct documentation_def
         since = str;
       }
 
-      efl::eina::ptr_list<const char> 
l(eolian_documentation_string_split(description.c_str()));
+      efl::eina::ptr_list<const char, efl::eina::malloc_clone_allocator>
+        l(eolian_documentation_string_split(description.c_str()));
       for (auto&& i : l)
         desc_paragraphs.push_back({&i});
    }

-- 


Reply via email to