From 74e176a8845bb74057ff633a40e291f82acd7236 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 23 Nov 2016 03:58:12 +0000 Subject: [PATCH] Fix builbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287735 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/SHA1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); -- 2.50.1