Slight improvements of unit tests, fix of perl bindings.

This commit is contained in:
bubnikv 2019-10-18 12:05:37 +02:00
parent 13cc74ef0a
commit e04e2b3636
4 changed files with 4 additions and 4 deletions

View file

@ -299,7 +299,7 @@ bool ConfigBase__set_deserialize(ConfigBase* THIS, const t_config_option_key &op
size_t len;
const char * c = SvPV(str, len);
std::string value(c, len);
return THIS->set_deserialize(opt_key, value);
return THIS->set_deserialize_nothrow(opt_key, value);
}
void ConfigBase__set_ifndef(ConfigBase* THIS, const t_config_option_key &opt_key, SV* value, bool deserialize)