| 483 | for ( auto & arg : td->argTypes ) lintType(arg); |
| 484 | } |
| 485 | virtual void preVisit ( TypeDecl * td ) override { |
| 486 | Visitor::preVisit(td); |
| 487 | lintType(td); |
| 488 | } |
| 489 | virtual void preVisitAlias ( TypeDecl * td, const string & name ) override { |
| 490 | Visitor::preVisitAlias(td,name); |
| 491 | if ( !td->isAuto() ) { |
nothing calls this directly
no test coverage detected