diff options
author | Eric Christopher <echristo@apple.com> | 2010-06-30 18:36:32 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-06-30 18:36:32 +0000 |
commit | 1c3d5029dbfb5bb01ab38d53e7d4dc29e9a8591f (patch) | |
tree | 8ccf941a7c407b1f0594d721fe6558ddb44b158d /lib/Sema/SemaOverload.cpp | |
parent | 6beaf938c0a2587ac4b2b60a51fbb9a80f72b766 (diff) |
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
Diffstat (limited to 'lib/Sema/SemaOverload.cpp')
-rw-r--r-- | lib/Sema/SemaOverload.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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 |