| 339 | |
| 340 | protected: |
| 341 | FuncType(MemPool* pool, QualType derived, int inlineReturn, |
| 342 | bool variadic, const ParamList& params) |
| 343 | : DerivedType(pool, derived), inlineNoReturn_(inlineReturn), |
| 344 | variadic_(variadic), params_(params) { |
| 345 | SetComplete(false); |
| 346 | } |
| 347 | |
| 348 | private: |
| 349 | int inlineNoReturn_; |
nothing calls this directly
no outgoing calls
no test coverage detected