| 106 | } |
| 107 | |
| 108 | virtual ~TInverseFilter() { |
| 109 | if (!UncaughtException()) { |
| 110 | try { |
| 111 | Finish(); |
| 112 | } catch (...) { |
| 113 | } |
| 114 | } else { |
| 115 | //rely on gc |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | inline void Write(const void* ptr, size_t len) { |
| 120 | In_.Reset(ptr, len); |
nothing calls this directly
no test coverage detected