| 53 | explicit AllocInfo(int type_ = 0, AllocStatus status_ = NOALLOC, const Token* allocTok_ = nullptr) : status(status_), type(type_), allocTok(allocTok_) {} |
| 54 | |
| 55 | bool managed() const { |
| 56 | return status < 0; |
| 57 | } |
| 58 | }; |
| 59 | enum Usage : std::uint8_t { USED, NORET }; |
| 60 | std::map<int, AllocInfo> alloctype; |
no outgoing calls
no test coverage detected