C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html
This commit is contained in:
parent
874d8732fd
commit
d035239536
|
@ -26571,12 +26571,14 @@ namespace exprtk
|
||||||
else if (all_nodes_variables(arg_list))
|
else if (all_nodes_variables(arg_list))
|
||||||
return varnode_optimise_varargfunc(operation,arg_list);
|
return varnode_optimise_varargfunc(operation,arg_list);
|
||||||
|
|
||||||
|
#ifndef exprtk_disable_string_capabilities
|
||||||
if (details::e_smulti == operation)
|
if (details::e_smulti == operation)
|
||||||
{
|
{
|
||||||
return node_allocator_->
|
return node_allocator_->
|
||||||
allocate<details::str_vararg_node<Type,details::vararg_multi_op<Type> > >(arg_list);
|
allocate<details::str_vararg_node<Type,details::vararg_multi_op<Type> > >(arg_list);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
switch (operation)
|
switch (operation)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue