| 203 | } |
| 204 | |
| 205 | bool Compression::close() { |
| 206 | ai_assert(mImpl != nullptr); |
| 207 | |
| 208 | if (!mImpl->mOpen) { |
| 209 | return false; |
| 210 | } |
| 211 | |
| 212 | inflateEnd(&mImpl->mZSstream); |
| 213 | mImpl->mOpen = false; |
| 214 | |
| 215 | return true; |
| 216 | } |
| 217 | |
| 218 | } // namespace Assimp |
no outgoing calls
no test coverage detected