diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-02-25 11:02:00 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-02-25 11:02:00 +0000 |
commit | b01d86b3159a571158781d631bea5eda25d1868f (patch) | |
tree | 038c27532b41eac7ee07b14542e40e1d12a9a8ec /clang/lib/Sema/SemaInit.cpp | |
parent | 073f2b4795aae459df548abf03aaa57bb627f194 (diff) | |
download | bcm5719-llvm-b01d86b3159a571158781d631bea5eda25d1868f.tar.gz bcm5719-llvm-b01d86b3159a571158781d631bea5eda25d1868f.zip |
Fix UTF8 chars to ASCII.
llvm-svn: 230479
Diffstat (limited to 'clang/lib/Sema/SemaInit.cpp')
-rw-r--r-- | clang/lib/Sema/SemaInit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaInit.cpp b/clang/lib/Sema/SemaInit.cpp index 9eb7700e9ea..4a6531e5069 100644 --- a/clang/lib/Sema/SemaInit.cpp +++ b/clang/lib/Sema/SemaInit.cpp @@ -3193,9 +3193,9 @@ ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc, // C++11 [over.best.ics]p4: // ... and the constructor or user-defined conversion function is a // candidate by - // — 13.3.1.3, when the argument is the temporary in the second step + // - 13.3.1.3, when the argument is the temporary in the second step // of a class copy-initialization, or - // — 13.3.1.4, 13.3.1.5, or 13.3.1.6 (in all cases), + // - 13.3.1.4, 13.3.1.5, or 13.3.1.6 (in all cases), // user-defined conversion sequences are not considered. // FIXME: This breaks backward compatibility, e.g. PR12117. As a // temporary fix, let's re-instate the third bullet above until |