]> granicus.if.org Git - clang/commitdiff
Fix 80-cols violations
authorSean Hunt <rideau3@gmail.com>
Sun, 29 Nov 2009 03:04:53 +0000 (03:04 +0000)
committerSean Hunt <rideau3@gmail.com>
Sun, 29 Nov 2009 03:04:53 +0000 (03:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90057 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaDecl.cpp

index fe73785a7f155ee02638883ef585fdbb9e132ba4..fb97f7000f8c68a9a91fd283f001eef19c1dd720 100644 (file)
@@ -1764,7 +1764,7 @@ DeclarationName Sema::GetNameFromUnqualifiedId(UnqualifiedId &Name) {
       
     case UnqualifiedId::IK_OperatorFunctionId:
       return Context.DeclarationNames.getCXXOperatorName(
-                                                         Name.OperatorFunctionId.Operator);
+                                              Name.OperatorFunctionId.Operator);
 
     case UnqualifiedId::IK_LiteralOperatorId:
       assert(false && "We don't support these; Parse shouldn't have allowed propagation");
@@ -1775,7 +1775,7 @@ DeclarationName Sema::GetNameFromUnqualifiedId(UnqualifiedId &Name) {
         return DeclarationName();
       
       return Context.DeclarationNames.getCXXConversionFunctionName(
-                                                                   Context.getCanonicalType(Ty));
+                                                  Context.getCanonicalType(Ty));
     }
       
     case UnqualifiedId::IK_ConstructorName: {
@@ -1784,7 +1784,7 @@ DeclarationName Sema::GetNameFromUnqualifiedId(UnqualifiedId &Name) {
         return DeclarationName();
       
       return Context.DeclarationNames.getCXXConstructorName(
-                                                            Context.getCanonicalType(Ty));
+                                                  Context.getCanonicalType(Ty));
     }
       
     case UnqualifiedId::IK_DestructorName: {