diff options
author | Larisse Voufo <lvoufo@google.com> | 2013-06-10 08:25:58 +0000 |
---|---|---|
committer | Larisse Voufo <lvoufo@google.com> | 2013-06-10 08:25:58 +0000 |
commit | 67170bd71ace5f1097dbf788891bf56ec66d7699 (patch) | |
tree | 3e562d2e36cd071eba535fede3e4c0f1b7f194a9 /clang/lib/Sema/SemaOverload.cpp | |
parent | 4c0ea93725c450483f97dbb5af1228cfc2f0c4fd (diff) | |
download | bcm5719-llvm-67170bd71ace5f1097dbf788891bf56ec66d7699.tar.gz bcm5719-llvm-67170bd71ace5f1097dbf788891bf56ec66d7699.zip |
Support for contextual conversion tweaks (N3323) was added, as Revision 183637
llvm-svn: 183639
Diffstat (limited to 'clang/lib/Sema/SemaOverload.cpp')
-rw-r--r-- | clang/lib/Sema/SemaOverload.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaOverload.cpp b/clang/lib/Sema/SemaOverload.cpp index 0653fbea54a..9e3ca9dd406 100644 --- a/clang/lib/Sema/SemaOverload.cpp +++ b/clang/lib/Sema/SemaOverload.cpp @@ -5370,8 +5370,8 @@ ExprResult Sema::PerformContextualImplicitConversion( // is said to be contextually implicitly converted to a specified // type T and is well-formed if and only if e can be implicitly // converted to a type T that is determined as follows: E is searched - // for conversion functions whose return type is cv T or reference - // to cv T such that T is allowed by the context. There shall be + // for conversion functions whose return type is cv T or reference to + // cv T such that T is allowed by the context. There shall be // exactly one such T. // If no unique T is found: |