Is it possible to disable assignment operator?
Closed this issue · 1 comments
aptypr commented
Hello!
Is it possible somehow to disable assignment operations in expression?
Sometimes expressions like "a=b", "a=a" are nor desirable.
Thanks!
beltoforion commented
You can use EnableBuiltInOprt(false) and then define all the operators you need. Similar to the implementation in muparserInt.cpp.