diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-01-27 07:09:49 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-01-27 07:09:49 +0000 |
commit | 7c2888689dfdd0d70061701c76d5c4d66d720cc2 (patch) | |
tree | cfe77b589e376cd6b830f0eee389d966c39eccea /clang/lib/Sema/SemaOverload.cpp | |
parent | 35389de110eeee233fc9789350ad2fa97077acb2 (diff) | |
download | bcm5719-llvm-7c2888689dfdd0d70061701c76d5c4d66d720cc2.tar.gz bcm5719-llvm-7c2888689dfdd0d70061701c76d5c4d66d720cc2.zip |
7bit-ize.
llvm-svn: 124363
Diffstat (limited to 'clang/lib/Sema/SemaOverload.cpp')
-rw-r--r-- | clang/lib/Sema/SemaOverload.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Sema/SemaOverload.cpp b/clang/lib/Sema/SemaOverload.cpp index f33f42d8564..1e8f315c95c 100644 --- a/clang/lib/Sema/SemaOverload.cpp +++ b/clang/lib/Sema/SemaOverload.cpp @@ -3242,9 +3242,9 @@ TryObjectArgumentInitialization(Sema &S, QualType OrigFromType, // For non-static member functions, the type of the implicit object // parameter is // - // — "lvalue reference to cv X" for functions declared without a - // ref-qualifier or with the & ref-qualifier - // — "rvalue reference to cv X" for functions declared with the && + // - "lvalue reference to cv X" for functions declared without a + // ref-qualifier or with the & ref-qualifier + // - "rvalue reference to cv X" for functions declared with the && // ref-qualifier // // where X is the class of which the function is a member and cv is the @@ -3623,7 +3623,7 @@ Sema::AddOverloadCandidate(FunctionDecl *Function, = dyn_cast<FunctionProtoType>(Function->getType()->getAs<FunctionType>()); assert(Proto && "Functions without a prototype cannot be overloaded"); assert(!Function->getDescribedFunctionTemplate() && - "Use AddTemp∫lateOverloadCandidate for function templates"); + "Use AddTemplateOverloadCandidate for function templates"); if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) { if (!isa<CXXConstructorDecl>(Method)) { |