| 1615 | } |
| 1616 | |
| 1617 | void TypeDecl::sanitize ( ) { |
| 1618 | isExplicit = false; |
| 1619 | explicitConst = false; |
| 1620 | if ( firstType ) firstType->sanitize(); |
| 1621 | if ( secondType ) secondType->sanitize(); |
| 1622 | for ( auto & argT : argTypes ) argT->sanitize(); |
| 1623 | } |
| 1624 | |
| 1625 | bool isSameExactNullType ( const TypeDeclPtr & a, const TypeDeclPtr & b ) { |
| 1626 | if ( a && b ) { |
no outgoing calls
no test coverage detected