From: Rafael Espindola Date: Wed, 8 Jan 2014 17:56:46 +0000 (+0000) Subject: Add missing rename from the previous commit. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2b5313d26ba58fb70b0333a73693ee453315879c;p=oota-llvm.git Add missing rename from the previous commit. No idea how this was compiling locally. Found by the bots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198775 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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;