Fixed private member access in init_branches()

This commit is contained in:
Schoenit, Tobias ST/BHL-TPO1 2023-04-12 09:26:08 +02:00
parent ef2d4ba215
commit 8c793fd103
1 changed files with 127 additions and 123 deletions

View File

@ -12759,7 +12759,11 @@ namespace exprtk
return false;
ts.size = 1;
#ifdef exprtk_enable_vector_runtime_checks
ts.data = var->value_ptr();
#else
ts.data = &var->ref();
#endif
ts.type = type_store_t::e_scalar;
}
else