projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f3ea33
)
Try to fix GCC error about invalid use of const_cast in const version of ErrorOr...
author
Alexey Samsonov
<vonosmas@gmail.com>
Mon, 20 Oct 2014 20:41:21 +0000
(20:41 +0000)
committer
Alexey Samsonov
<vonosmas@gmail.com>
Mon, 20 Oct 2014 20:41:21 +0000
(20:41 +0000)
llvm-svn: 220233
llvm/include/llvm/Support/ErrorOr.h
patch
|
blob
|
history
diff --git
a/llvm/include/llvm/Support/ErrorOr.h
b/llvm/include/llvm/Support/ErrorOr.h
index
68ab946
..
4d9f05b
100644
(file)
--- a/
llvm/include/llvm/Support/ErrorOr.h
+++ b/
llvm/include/llvm/Support/ErrorOr.h
@@
-173,7
+173,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(); }
std::error_code getError() const {
return HasError ? *getErrorStorage() : std::error_code();