[PATCH] D67113: ICK_Function_Conversion and ICK_Qualification are third kind conversions
Aaron Puchert via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Sep 3 15:27:03 PDT 2019
aaronpuchert updated this revision to Diff 218550.
aaronpuchert added a comment.
Remove wrong changes in SemaExprCXX.cpp.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67113/new/
https://reviews.llvm.org/D67113
Files:
clang/lib/Sema/SemaOverload.cpp
Index: clang/lib/Sema/SemaOverload.cpp
===================================================================
--- clang/lib/Sema/SemaOverload.cpp
+++ clang/lib/Sema/SemaOverload.cpp
@@ -5339,7 +5339,6 @@
// conversions are fine.
switch (SCS.Second) {
case ICK_Identity:
- case ICK_Function_Conversion:
case ICK_Integral_Promotion:
case ICK_Integral_Conversion: // Narrowing conversions are checked elsewhere.
case ICK_Zero_Queue_Conversion:
@@ -5385,6 +5384,7 @@
case ICK_Function_To_Pointer:
llvm_unreachable("found a first conversion kind in Second");
+ case ICK_Function_Conversion:
case ICK_Qualification:
llvm_unreachable("found a third conversion kind in Second");
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D67113.218550.patch
Type: text/x-patch
Size: 708 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190903/c9b92502/attachment.bin>
More information about the cfe-commits
mailing list