From: Eric Christopher Date: Wed, 30 Jun 2010 18:36:32 +0000 (+0000) Subject: Add a return to silence a warning. Alternately a default: return false X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c3d5029dbfb5bb01ab38d53e7d4dc29e9a8591f;p=clang Add a return to silence a warning. Alternately a default: return false would work. Sebastian: figure out which one you want :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107305 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp index 344fb92c25..4f841b0651 100644 --- a/lib/Sema/SemaOverload.cpp +++ b/lib/Sema/SemaOverload.cpp @@ -2707,6 +2707,8 @@ FindConversionToLValue(Sema &S, ImplicitConversionSequence &ICS, // conversion; continue with other checks. return false; } + + return false; } /// \brief Compute an implicit conversion sequence for reference