diff options
author | Alexis Hunt <alercah@gmail.com> | 2009-11-29 03:04:53 +0000 |
---|---|---|
committer | Alexis Hunt <alercah@gmail.com> | 2009-11-29 03:04:53 +0000 |
commit | 8818b42db02fd996ebd7422692b9868bb66f60c3 (patch) | |
tree | a9c3eaf6827ff692624c19395691a6761bb8c003 /clang/lib/Sema/SemaDecl.cpp | |
parent | 1cc4cca19340176d8169bfc2e1b48fc9afbc8ed4 (diff) | |
download | bcm5719-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.cpp | 6 |
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: { |