diff options
-rw-r--r-- | include/clang/AST/TypeLoc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/TypeLoc.h b/include/clang/AST/TypeLoc.h index 08b2829f14..ef2b0542e7 100644 --- a/include/clang/AST/TypeLoc.h +++ b/include/clang/AST/TypeLoc.h @@ -142,7 +142,7 @@ private: /// \brief Return the TypeLoc for a type source info. inline TypeLoc TypeSourceInfo::getTypeLoc() const { - return TypeLoc(Ty, const_cast<TypeSourceInfo*>(this + 1)); + return TypeLoc(Ty, const_cast<void*>(static_cast<const void*>(this + 1))); } /// \brief Wrapper of type source information for a type with |