diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-19 05:49:46 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-19 05:49:46 +0000 |
commit | 938d53e143cd49c298756048a3b428b79a3cd8d6 (patch) | |
tree | 205ae9ee0a9e169940d99cb0bab30fe941ea152b | |
parent | 849c7b570869447eca0a9ee266d09a9e1186b15f (diff) |
Remove unnecessary spaces in function signature
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17139 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/DerivedTypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/DerivedTypes.h b/include/llvm/DerivedTypes.h index add873ce2d..c133c57153 100644 --- a/include/llvm/DerivedTypes.h +++ b/include/llvm/DerivedTypes.h @@ -328,7 +328,7 @@ public: /// static PackedType *get(const Type *ElementType, unsigned NumElements); - inline unsigned getNumElements() const { return NumElements; } + inline unsigned getNumElements() const { return NumElements; } // Implement the AbstractTypeUser interface. virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy); |