[cfe-commits] r90057 - /cfe/trunk/lib/Sema/SemaDecl.cpp

Sean Hunt rideau3 at gmail.com
Sat Nov 28 19:04:54 PST 2009


Author: coppro
Date: Sat Nov 28 21:04:53 2009
New Revision: 90057

URL: http://llvm.org/viewvc/llvm-project?rev=90057&view=rev
Log:
Fix 80-cols violations

Modified:
    cfe/trunk/lib/Sema/SemaDecl.cpp

Modified: cfe/trunk/lib/Sema/SemaDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaDecl.cpp?rev=90057&r1=90056&r2=90057&view=diff

==============================================================================
--- cfe/trunk/lib/Sema/SemaDecl.cpp (original)
+++ cfe/trunk/lib/Sema/SemaDecl.cpp Sat Nov 28 21:04:53 2009
@@ -1764,7 +1764,7 @@
       
     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 @@
         return DeclarationName();
       
       return Context.DeclarationNames.getCXXConversionFunctionName(
-                                                                   Context.getCanonicalType(Ty));
+                                                  Context.getCanonicalType(Ty));
     }
       
     case UnqualifiedId::IK_ConstructorName: {
@@ -1784,7 +1784,7 @@
         return DeclarationName();
       
       return Context.DeclarationNames.getCXXConstructorName(
-                                                            Context.getCanonicalType(Ty));
+                                                  Context.getCanonicalType(Ty));
     }
       
     case UnqualifiedId::IK_DestructorName: {





More information about the cfe-commits mailing list