beltoforion/muparser

Is it possible to disable assignment operator?

Closed this issue · 1 comments

Hello!

Is it possible somehow to disable assignment operations in expression?
Sometimes expressions like "a=b", "a=a" are nor desirable.

Thanks!

You can use EnableBuiltInOprt(false) and then define all the operators you need. Similar to the implementation in muparserInt.cpp.