| 37 | } |
| 38 | |
| 39 | bool RDExtension::isNonStaticClassMethod(std::string FuncName) const { |
| 40 | |
| 41 | return NonStaticCXXMethod.find(FuncName) != NonStaticCXXMethod.end(); |
| 42 | } |
| 43 | |
| 44 | RDExtension &RDExtension::operator=(const RDExtension &Src) { |
| 45 | OutParams = Src.OutParams; |
no test coverage detected