Skip to content
Snippets Groups Projects
Commit b2202bed authored by Andreas Dedner's avatar Andreas Dedner
Browse files

Merge branch 'bugfix/typeregistrymemoryleak' into 'master'

use a unique_ptr to avoid memory leak

See merge request !898
parents 5a2735c5 57adbf16
No related branches found
No related tags found
1 merge request!898use a unique_ptr to avoid memory leak
Pipeline #31313 passed
......@@ -447,7 +447,7 @@ namespace Dune
pybind11::class_< detail::TypeRegistry > cls( scope, "TypeRegistry" );
scope.attr( "typeRegistry" ) = pybind11::cast( new detail::TypeRegistry );
scope.attr( "typeRegistry" ) = pybind11::cast( std::make_unique< detail::TypeRegistry >() );
scope.def( "generateTypeName", []( std::string className, pybind11::args targs ) {
GenerateTypeName gtn( className, targs );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment