m_module is now a pointer instead of reference

This commit is contained in:
2016-08-05 11:23:59 +02:00
parent a9ecde86d9
commit 460adb9858
27 changed files with 168 additions and 166 deletions

View File

@@ -692,7 +692,7 @@ namespace eap
///
virtual config_method* make_config_method()
{
return new config_method_type(*this);
return new config_method_type(this);
}
};