diff --git a/llvm/include/llvm/Object/Decompressor.h b/llvm/include/llvm/Object/Decompressor.h index 5af1b41bbe28..0f63f8b821b7 100644 --- a/llvm/include/llvm/Object/Decompressor.h +++ b/llvm/include/llvm/Object/Decompressor.h @@ -30,7 +30,7 @@ public: /// @brief Resize the buffer and uncompress section data into it. /// @param Out Destination buffer. - template Error Decompressor::resizeAndDecompress(T &Out) { + template Error resizeAndDecompress(T &Out) { Out.resize(DecompressedSize); return decompress({Out.data(), (size_t)DecompressedSize}); }