| 795 | } |
| 796 | |
| 797 | bool isConstructor() const { |
| 798 | return type==FunctionType::eConstructor || |
| 799 | type==FunctionType::eCopyConstructor || |
| 800 | type==FunctionType::eMoveConstructor; |
| 801 | } |
| 802 | |
| 803 | bool isDestructor() const { |
| 804 | return type==FunctionType::eDestructor; |
no outgoing calls
no test coverage detected