##// END OF EJS Templates
added support for more binary operators...
florianlink -
r75:a5a86d2c226e
parent child
Show More
@@ -544,7 +544,11 bool AbstractMetaBuilder::build()
544 }
544 }
545
545
546 {
546 {
547 FunctionList stream_operators = m_dom->findFunctions("operator+") + m_dom->findFunctions("operator-") + m_dom->findFunctions("operator/") + m_dom->findFunctions("operator*");
547 FunctionList stream_operators =
548 m_dom->findFunctions("operator+") + m_dom->findFunctions("operator-")
549 + m_dom->findFunctions("operator/") + m_dom->findFunctions("operator*")
550 + m_dom->findFunctions("operator&") + m_dom->findFunctions("operator|")
551 + m_dom->findFunctions("operator%") + m_dom->findFunctions("operator^");
548 foreach (FunctionModelItem item, stream_operators) {
552 foreach (FunctionModelItem item, stream_operators) {
549 traverseBinaryArithmeticOperator(item);
553 traverseBinaryArithmeticOperator(item);
550 }
554 }
General Comments 0
You need to be logged in to leave comments. Login now