Fixed private member access in init_branches()
This commit is contained in:
parent
ef2d4ba215
commit
8c793fd103
|
@ -12759,7 +12759,11 @@ namespace exprtk
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
ts.size = 1;
|
ts.size = 1;
|
||||||
|
#ifdef exprtk_enable_vector_runtime_checks
|
||||||
ts.data = var->value_ptr();
|
ts.data = var->value_ptr();
|
||||||
|
#else
|
||||||
|
ts.data = &var->ref();
|
||||||
|
#endif
|
||||||
ts.type = type_store_t::e_scalar;
|
ts.type = type_store_t::e_scalar;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue