diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-18 22:34:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-18 22:34:38 +0000 |
commit | bc5e150b6d94cf131f7d01bc715571b741c5b408 (patch) | |
tree | d7414cfd6a2d51319b3c6d03285afdfe2da93d08 | |
parent | 570f0cf734f321b902eb18dd1b07f53543f0a393 (diff) |
minor spacing changes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64968 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Type.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 9db22fc836..c8ceafb132 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -463,7 +463,7 @@ protected: /// be serialized. // FIXME: Make this abstract once implemented. virtual void EmitImpl(llvm::Serializer& S) const { - assert (false && "Serializization for type not supported."); + assert(false && "Serializization for type not supported."); } }; @@ -926,7 +926,7 @@ public: friend class StmtIteratorBase; void Profile(llvm::FoldingSetNodeID &ID) { - assert (0 && "Cannnot unique VariableArrayTypes."); + assert(0 && "Cannnot unique VariableArrayTypes."); } protected: @@ -974,7 +974,7 @@ public: friend class StmtIteratorBase; void Profile(llvm::FoldingSetNodeID &ID) { - assert (0 && "Cannnot unique DependentSizedArrayTypes."); + assert(0 && "Cannnot unique DependentSizedArrayTypes."); } protected: @@ -1752,7 +1752,7 @@ inline QualType::GCAttrTypes QualType::getObjCGCAttr() const { return AT->getElementType().getObjCGCAttr(); if (const ExtQualType *EXTQT = dyn_cast<ExtQualType>(CT)) return EXTQT->getObjCGCAttr(); - return GCNone; + return GCNone; } /// isMoreQualifiedThan - Determine whether this type is more |