summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Support/ErrorOr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/ErrorOr.h b/include/llvm/Support/ErrorOr.h
index 39fec3b5ae..1e29b3d352 100644
--- a/include/llvm/Support/ErrorOr.h
+++ b/include/llvm/Support/ErrorOr.h
@@ -103,6 +103,7 @@ public:
private:
typedef typename remove_reference<T>::type &reference;
+ typedef const typename remove_reference<T>::type &const_reference;
typedef typename remove_reference<T>::type *pointer;
public:
@@ -175,7 +176,7 @@ public:
}
reference get() { return *getStorage(); }
- const reference get() const { return const_cast<ErrorOr<T> >(this)->get(); }
+ const_reference get() const { return const_cast<ErrorOr<T> >(this)->get(); }
error_code getError() const {
return HasError ? *getErrorStorage() : error_code::success();