diff options
-rw-r--r-- | include/clang/AST/APValue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/APValue.h b/include/clang/AST/APValue.h index bc7138565b..f361f0f5c8 100644 --- a/include/clang/AST/APValue.h +++ b/include/clang/AST/APValue.h @@ -329,11 +329,11 @@ public: const AddrLabelExpr* getAddrLabelDiffLHS() const { assert(isAddrLabelDiff() && "Invalid accessor"); - return ((AddrLabelDiffData*)(char*)Data)->LHSExpr; + return ((const AddrLabelDiffData*)(const char*)Data)->LHSExpr; } const AddrLabelExpr* getAddrLabelDiffRHS() const { assert(isAddrLabelDiff() && "Invalid accessor"); - return ((AddrLabelDiffData*)(char*)Data)->RHSExpr; + return ((const AddrLabelDiffData*)(const char*)Data)->RHSExpr; } void setInt(const APSInt &I) { |