File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ struct ZipBuffer {
165
165
// writing compressed data and it returns NULL for this case.)
166
166
void * OpenZipBuffer (void * opaque, const void * /* filename*/ , int mode) {
167
167
if ((mode & ZLIB_FILEFUNC_MODE_READWRITEFILTER) != ZLIB_FILEFUNC_MODE_READ) {
168
- NOTREACHED ();
168
+ NOTREACHED_IN_MIGRATION ();
169
169
return NULL ;
170
170
}
171
171
ZipBuffer* buffer = static_cast <ZipBuffer*>(opaque);
@@ -196,7 +196,7 @@ uLong WriteZipBuffer(void* /*opaque*/,
196
196
void * /* stream*/ ,
197
197
const void * /* buf*/ ,
198
198
uLong /* size*/ ) {
199
- NOTREACHED ();
199
+ NOTREACHED_IN_MIGRATION ();
200
200
return 0 ;
201
201
}
202
202
@@ -228,7 +228,7 @@ long SeekZipBuffer(void* opaque,
228
228
buffer->offset = std::min (buffer->length , offset);
229
229
return 0 ;
230
230
}
231
- NOTREACHED ();
231
+ NOTREACHED_IN_MIGRATION ();
232
232
return -1 ;
233
233
}
234
234
You can’t perform that action at this time.
0 commit comments