From: Rui Ueyama Date: Wed, 23 Nov 2016 03:58:12 +0000 (+0000) Subject: Fix builbots. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74e176a8845bb74057ff633a40e291f82acd7236;p=llvm Fix builbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287735 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/SHA1.cpp b/lib/Support/SHA1.cpp index 016f580ae6d..0eefd998cd7 100644 --- a/lib/Support/SHA1.cpp +++ b/lib/Support/SHA1.cpp @@ -273,7 +273,7 @@ StringRef SHA1::result() { std::array SHA1::hash(ArrayRef Data) { SHA1 Hash; Hash.update(Data); - StringRef S = Hash.final().data(); + StringRef S = Hash.final(); std::array Arr; memcpy(Arr.data(), S.data(), S.size());