Changes in src/AST/Pass.impl.hpp [361bf01:6a45bd78]
- File:
-
- 1 edited
-
src/AST/Pass.impl.hpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.impl.hpp
r361bf01 r6a45bd78 1777 1777 VISIT({ 1778 1778 guard_symtab guard { *this }; 1779 guard_forall_subs forall_guard { *this, node }; 1780 mutate_forall( node ); 1779 1781 maybe_accept( node, &StructInstType::params ); 1780 1782 }) … … 1793 1795 VISIT({ 1794 1796 guard_symtab guard { *this }; 1797 guard_forall_subs forall_guard { *this, node }; 1798 mutate_forall( node ); 1795 1799 maybe_accept( node, &UnionInstType::params ); 1796 1800 }) … … 1806 1810 1807 1811 VISIT({ 1812 guard_forall_subs forall_guard { *this, node }; 1813 mutate_forall( node ); 1808 1814 maybe_accept( node, &EnumInstType::params ); 1809 1815 }) … … 1819 1825 1820 1826 VISIT({ 1827 guard_forall_subs forall_guard { *this, node }; 1828 mutate_forall( node ); 1821 1829 maybe_accept( node, &TraitInstType::params ); 1822 1830 }) … … 1833 1841 VISIT( 1834 1842 { 1843 guard_forall_subs forall_guard { *this, node }; 1844 mutate_forall( node ); 1835 1845 maybe_accept( node, &TypeInstType::params ); 1836 1846 }
Note:
See TracChangeset
for help on using the changeset viewer.