summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-18 22:34:38 +0000
committerChris Lattner <sabre@nondot.org>2009-02-18 22:34:38 +0000
commit416a3c1248a5d68eddfb36b3e31d12b07785a67f (patch)
treeccda1d8644d1ff8d16cd56f56bd21bd29341603b
parent8cdb9dae45e944060012a0176f2cea952ee36881 (diff)
downloadbcm5719-llvm-416a3c1248a5d68eddfb36b3e31d12b07785a67f.tar.gz
bcm5719-llvm-416a3c1248a5d68eddfb36b3e31d12b07785a67f.zip
minor spacing changes.
llvm-svn: 64968
-rw-r--r--clang/include/clang/AST/Type.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/include/clang/AST/Type.h b/clang/include/clang/AST/Type.h
index 9db22fc836c..c8ceafb1329 100644
--- a/clang/include/clang/AST/Type.h
+++ b/clang/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
OpenPOWER on IntegriCloud