Destructor. */
| 95 | |
| 96 | /** Destructor. */ |
| 97 | ~Function() { |
| 98 | if (good()) { |
| 99 | munmap(buffer_, capacity_); |
| 100 | buffer_ = (unsigned char*)-1; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | /** Returns a pointer to the internal buffer */ |
| 105 | void* data() const { |
nothing calls this directly
no outgoing calls
no test coverage detected