| 124 | //----------------------------------------------------------------------------- |
| 125 | |
| 126 | static bool IsCopyOrMoveCtor(const CXXConstructorDecl* ctor) |
| 127 | { |
| 128 | return ctor and (ctor->isCopyConstructor() or ctor->isMoveConstructor()); |
| 129 | } |
| 130 | //----------------------------------------------------------------------------- |
| 131 | |
| 132 | static bool IsCopyOrMoveAssign(const CXXMethodDecl* stmt) |
no outgoing calls
no test coverage detected