summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Rimar <grimar@accesssoftek.com>2017-05-18 08:14:43 +0000
committerGeorge Rimar <grimar@accesssoftek.com>2017-05-18 08:14:43 +0000
commitd2aaf5bd37315f6a15ed80f486085dd0a97b1b1d (patch)
tree6d5d6dbe4801353586fd28eb30a130e2efa2e75e
parent2ea271b54a702adcb014eb9d072faa04d74c9a1b (diff)
downloadbcm5719-llvm-d2aaf5bd37315f6a15ed80f486085dd0a97b1b1d.tar.gz
bcm5719-llvm-d2aaf5bd37315f6a15ed80f486085dd0a97b1b1d.zip
[lib/Object] - Fix build bot after r303331 "[lib/Object] - Minor API update for llvm::Decompressor".
Error was: Decompressor.h:33:28: error: extra qualification ‘llvm::object::Decompressor::’ on member ‘resizeAndDecompress’ [-fpermissive] template <class T> Error Decompressor::resizeAndDecompress(T &Out) { llvm-svn: 303334
-rw-r--r--llvm/include/llvm/Object/Decompressor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Object/Decompressor.h b/llvm/include/llvm/Object/Decompressor.h
index 5af1b41bbe2..0f63f8b821b 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 <class T> Error Decompressor::resizeAndDecompress(T &Out) {
+ template <class T> Error resizeAndDecompress(T &Out) {
Out.resize(DecompressedSize);
return decompress({Out.data(), (size_t)DecompressedSize});
}
OpenPOWER on IntegriCloud