mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-16 11:24:39 +00:00
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
This commit is contained in:
@@ -173,7 +173,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
reference get() { return *getStorage(); }
|
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 {
|
std::error_code getError() const {
|
||||||
return HasError ? *getErrorStorage() : std::error_code();
|
return HasError ? *getErrorStorage() : std::error_code();
|
||||||
|
Reference in New Issue
Block a user