Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs/src
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-10-18 13:05:37 +0300
committerbubnikv <bubnikv@gmail.com>2019-10-18 13:05:37 +0300
commite04e2b36362dec7be8056b82c41e82a2517ac38d (patch)
treee100c7d318b51c4fdbcd61db801c6d79fa60a45f /xs/src
parent13cc74ef0a6445bef3493dc63aff3c6933ed757f (diff)
Slight improvements of unit tests, fix of perl bindings.
Diffstat (limited to 'xs/src')
-rw-r--r--xs/src/perlglue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/perlglue.cpp b/xs/src/perlglue.cpp
index 463f7d21b..c3cd7e616 100644
--- a/xs/src/perlglue.cpp
+++ b/xs/src/perlglue.cpp
@@ -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)