[cfe-commits] r107305 - /cfe/trunk/lib/Sema/SemaOverload.cpp
Eric Christopher
echristo at apple.com
Wed Jun 30 11:36:32 PDT 2010
Author: echristo
Date: Wed Jun 30 13:36:32 2010
New Revision: 107305
URL: http://llvm.org/viewvc/llvm-project?rev=107305&view=rev
Log:
Add a return to silence a warning. Alternately a default: return false
would work.
Sebastian: figure out which one you want :)
Modified:
cfe/trunk/lib/Sema/SemaOverload.cpp
Modified: cfe/trunk/lib/Sema/SemaOverload.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaOverload.cpp?rev=107305&r1=107304&r2=107305&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaOverload.cpp (original)
+++ cfe/trunk/lib/Sema/SemaOverload.cpp Wed Jun 30 13:36:32 2010
@@ -2707,6 +2707,8 @@
// conversion; continue with other checks.
return false;
}
+
+ return false;
}
/// \brief Compute an implicit conversion sequence for reference
More information about the cfe-commits
mailing list