Define a dummy zlib::uncompress when zlib is not available.
Should fix link errors in some bots when it is used. llvm-svn: 281208
This commit is contained in:
@@ -94,6 +94,10 @@ zlib::Status zlib::compress(StringRef InputBuffer,
|
||||
CompressionLevel Level) {
|
||||
return zlib::StatusUnsupported;
|
||||
}
|
||||
zlib::Status zlib::uncompress(StringRef InputBuffer, char *UncompressedBuffer,
|
||||
size_t &UncompressedSize) {
|
||||
return zlib::StatusUnsupported;
|
||||
}
|
||||
zlib::Status zlib::uncompress(StringRef InputBuffer,
|
||||
SmallVectorImpl<char> &UncompressedBuffer,
|
||||
size_t UncompressedSize) {
|
||||
|
||||
Reference in New Issue
Block a user