From 1c3d5029dbfb5bb01ab38d53e7d4dc29e9a8591f Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 30 Jun 2010 18:36:32 +0000 Subject: [PATCH] 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 --- lib/Sema/SemaOverload.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.40.0