Try to fix GCC error about invalid use of const_cast in const version of ErrorOr...
authorAlexey Samsonov <vonosmas@gmail.com>
Mon, 20 Oct 2014 20:41:21 +0000 (20:41 +0000)
committerAlexey Samsonov <vonosmas@gmail.com>
Mon, 20 Oct 2014 20:41:21 +0000 (20:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220233 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/ErrorOr.h

index 68ab94609c111b7bad36351186a7e27b403c3009..4d9f05bc09e3f88f02831c3cc7b84af3e24c5b94 100644 (file)
@@ -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();