[cfe-commits] r62449 - in /cfe/trunk/include/clang: AST/Type.h Parse/Action.h
Nate Begeman
natebegeman at mac.com
Sat Jan 17 18:27:45 PST 2009
Author: sampo
Date: Sat Jan 17 20:27:45 2009
New Revision: 62449
URL: http://llvm.org/viewvc/llvm-project?rev=62449&view=rev
Log:
Eliminate tabs
Modified:
cfe/trunk/include/clang/AST/Type.h
cfe/trunk/include/clang/Parse/Action.h
Modified: cfe/trunk/include/clang/AST/Type.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Type.h?rev=62449&r1=62448&r2=62449&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Type.h (original)
+++ cfe/trunk/include/clang/AST/Type.h Sat Jan 17 20:27:45 2009
@@ -1028,7 +1028,7 @@
class FunctionTypeNoProto : public FunctionType, public llvm::FoldingSetNode {
FunctionTypeNoProto(QualType Result, QualType Canonical)
: FunctionType(FunctionNoProto, Result, false, 0, Canonical,
- /*Dependent=*/false) {}
+ /*Dependent=*/false) {}
friend class ASTContext; // ASTContext creates these.
public:
// No additional state past what FunctionType provides.
@@ -1062,7 +1062,7 @@
static bool hasAnyDependentType(const QualType *ArgArray, unsigned numArgs) {
for (unsigned Idx = 0; Idx < numArgs; ++Idx)
if (ArgArray[Idx]->isDependentType())
- return true;
+ return true;
return false;
}
@@ -1070,8 +1070,8 @@
FunctionTypeProto(QualType Result, const QualType *ArgArray, unsigned numArgs,
bool isVariadic, unsigned typeQuals, QualType Canonical)
: FunctionType(FunctionProto, Result, isVariadic, typeQuals, Canonical,
- (Result->isDependentType() ||
- hasAnyDependentType(ArgArray, numArgs))),
+ (Result->isDependentType() ||
+ hasAnyDependentType(ArgArray, numArgs))),
NumArgs(numArgs) {
// Fill in the trailing argument array.
QualType *ArgInfo = reinterpret_cast<QualType *>(this+1);;
@@ -1447,7 +1447,7 @@
ObjCQualifiedIdType(ObjCProtocolDecl **Protos, unsigned NumP)
: Type(ObjCQualifiedId, QualType()/*these are always canonical*/,
- /*Dependent=*/false),
+ /*Dependent=*/false),
Protocols(Protos, Protos+NumP) { }
friend class ASTContext; // ASTContext creates these.
public:
Modified: cfe/trunk/include/clang/Parse/Action.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Action.h?rev=62449&r1=62448&r2=62449&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/Action.h (original)
+++ cfe/trunk/include/clang/Parse/Action.h Sat Jan 17 20:27:45 2009
@@ -1160,8 +1160,8 @@
virtual DeclTy *ActOnProperty (Scope *S, SourceLocation AtLoc,
FieldDeclarator &FD, ObjCDeclSpec &ODS,
Selector GetterSel, Selector SetterSel,
- DeclTy *ClassCategory,
- bool *OverridingProperty,
+ DeclTy *ClassCategory,
+ bool *OverridingProperty,
tok::ObjCKeywordKind MethodImplKind) {
return 0;
}
More information about the cfe-commits
mailing list