summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaDecl.cpp
diff options
context:
space:
mode:
authorAlexis Hunt <alercah@gmail.com>2009-11-29 03:04:53 +0000
committerAlexis Hunt <alercah@gmail.com>2009-11-29 03:04:53 +0000
commit8818b42db02fd996ebd7422692b9868bb66f60c3 (patch)
treea9c3eaf6827ff692624c19395691a6761bb8c003 /clang/lib/Sema/SemaDecl.cpp
parent1cc4cca19340176d8169bfc2e1b48fc9afbc8ed4 (diff)
downloadbcm5719-llvm-8818b42db02fd996ebd7422692b9868bb66f60c3.tar.gz
bcm5719-llvm-8818b42db02fd996ebd7422692b9868bb66f60c3.zip
Fix 80-cols violations
llvm-svn: 90057
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r--clang/lib/Sema/SemaDecl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp
index fe73785a7f1..fb97f7000f8 100644
--- a/clang/lib/Sema/SemaDecl.cpp
+++ b/clang/lib/Sema/SemaDecl.cpp
@@ -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: {
OpenPOWER on IntegriCloud