From: Alexey Samsonov Date: Mon, 20 Oct 2014 20:41:21 +0000 (+0000) Subject: Try to fix GCC error about invalid use of const_cast in const version of ErrorOr... X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=2d6aee13e57125f6688ecc79dce9ee48d806ba19 Try to fix GCC error about invalid use of const_cast in const version of ErrorOr::get() git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220233 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/ErrorOr.h b/include/llvm/Support/ErrorOr.h index 68ab94609c1..4d9f05bc09e 100644 --- a/include/llvm/Support/ErrorOr.h +++ b/include/llvm/Support/ErrorOr.h @@ -173,7 +173,7 @@ public: } reference get() { return *getStorage(); } - const_reference get() const { return const_cast >(this)->get(); } + const_reference get() const { return const_cast *>(this)->get(); } std::error_code getError() const { return HasError ? *getErrorStorage() : std::error_code();