From 0994280828fb5c7cd544188659fd59616cb64e2c Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 8 Jan 2014 17:56:46 +0000 Subject: [PATCH] Add missing rename from the previous commit. No idea how this was compiling locally. Found by the bots. llvm-svn: 198775 --- include/llvm/Support/ErrorOr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/ErrorOr.h b/include/llvm/Support/ErrorOr.h index 4f475a04284..26af1e8c800 100644 --- a/include/llvm/Support/ErrorOr.h +++ b/include/llvm/Support/ErrorOr.h @@ -196,7 +196,7 @@ private: if (!Other.HasError) { // Get the other value. HasError = false; - new (getStorage()) storage_type(*Other.get()); + new (getStorage()) storage_type(*Other.getStorage()); } else { // Get other's error. HasError = true;