Changes in src/Common/PassVisitor.impl.h [842c3d3:9a705dc8]
- File:
-
- 1 edited
-
src/Common/PassVisitor.impl.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
r842c3d3 r9a705dc8 690 690 VISIT_START( node ); 691 691 692 node->condition = visitExpression( node->condition);693 maybeAccept_impl( node->message , *this );692 maybeAccept_impl( node->condition, *this ); 693 maybeAccept_impl( node->message , *this ); 694 694 695 695 VISIT_END( node ); … … 700 700 MUTATE_START( node ); 701 701 702 node->condition = mutateExpression( node->condition);703 maybeMutate_impl( node->message , *this );702 maybeMutate_impl( node->condition, *this ); 703 maybeMutate_impl( node->message , *this ); 704 704 705 705 MUTATE_END( StaticAssertDecl, node );
Note:
See TracChangeset
for help on using the changeset viewer.