diff --git a/generator/abstractmetabuilder.cpp b/generator/abstractmetabuilder.cpp index 4d826cc..c41f398 100644 --- a/generator/abstractmetabuilder.cpp +++ b/generator/abstractmetabuilder.cpp @@ -544,7 +544,11 @@ bool AbstractMetaBuilder::build() } { - FunctionList stream_operators = m_dom->findFunctions("operator+") + m_dom->findFunctions("operator-") + m_dom->findFunctions("operator/") + m_dom->findFunctions("operator*"); + FunctionList stream_operators = + m_dom->findFunctions("operator+") + m_dom->findFunctions("operator-") + + m_dom->findFunctions("operator/") + m_dom->findFunctions("operator*") + + m_dom->findFunctions("operator&") + m_dom->findFunctions("operator|") + + m_dom->findFunctions("operator%") + m_dom->findFunctions("operator^"); foreach (FunctionModelItem item, stream_operators) { traverseBinaryArithmeticOperator(item); }