diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-08-12 08:12:35 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-08-12 08:12:35 +0000 |
commit | 276222a5ae189ed5c6a2afb248d4c8f0335585b4 (patch) | |
tree | 091ab79822fefb238e55ea959e4c1a2c19f7e6cb /include/llvm/SymbolTableListTraits.h | |
parent | 98147a306e9b3be6d52ad26f7836b89f46be99cb (diff) | |
download | external_llvm-276222a5ae189ed5c6a2afb248d4c8f0335585b4.zip external_llvm-276222a5ae189ed5c6a2afb248d4c8f0335585b4.tar.gz external_llvm-276222a5ae189ed5c6a2afb248d4c8f0335585b4.tar.bz2 |
Change casts from old style to new style. This helps document the details
better, gives the compiler a chance to validate the cast and reduces warnings
if the user turns on -Wold-style-cast option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41033 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/SymbolTableListTraits.h')
-rw-r--r-- | include/llvm/SymbolTableListTraits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/SymbolTableListTraits.h b/include/llvm/SymbolTableListTraits.h index 205b409..a78d27f 100644 --- a/include/llvm/SymbolTableListTraits.h +++ b/include/llvm/SymbolTableListTraits.h @@ -45,7 +45,7 @@ public: /// getListOwner - Return the object that owns this list. If this is a list /// of instructions, it returns the BasicBlock that owns them. ItemParentClass *getListOwner() { - return reinterpret_cast<ItemParentClass*>((char*)this- + return reinterpret_cast<ItemParentClass*>(reinterpret_cast<char*>(this)- TraitsClass::getListOffset()); } static ValueSubClass *getPrev(ValueSubClass *V) { return V->getPrev(); } |