]> granicus.if.org Git - clang/commitdiff
Eliminate tabs
authorNate Begeman <natebegeman@mac.com>
Sun, 18 Jan 2009 02:27:45 +0000 (02:27 +0000)
committerNate Begeman <natebegeman@mac.com>
Sun, 18 Jan 2009 02:27:45 +0000 (02:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62449 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Type.h
include/clang/Parse/Action.h

index 9c9c5af69afe3c1734d3edcc59cac233d17dd348..c8024d43baf8c4b2815bd1b4b1db6d665e88f994 100644 (file)
@@ -1028,7 +1028,7 @@ public:
 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 @@ class FunctionTypeProto : public FunctionType, public llvm::FoldingSetNode {
   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 @@ class FunctionTypeProto : public FunctionType, public llvm::FoldingSetNode {
   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 @@ class ObjCQualifiedIdType : public Type,
     
   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:
index f78f4f38d14c36c003d24c9d974ad0f00b7d9c38..42b4b7865fbfe9002859befc6965d469b6c9c221 100644 (file)
@@ -1160,8 +1160,8 @@ public:
   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;
   }