summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-06-30 18:36:32 +0000
committerEric Christopher <echristo@apple.com>2010-06-30 18:36:32 +0000
commitaba9fb217e2ac58e81248553dd545192e320a566 (patch)
treef2654466096afe9e9d4a4f81def0afed49a9bb8e /clang/lib
parent88d5a91f0df6c62d9ed79b3a99b30f29b5415667 (diff)
downloadbcm5719-llvm-aba9fb217e2ac58e81248553dd545192e320a566.tar.gz
bcm5719-llvm-aba9fb217e2ac58e81248553dd545192e320a566.zip
Add a return to silence a warning. Alternately a default: return false
would work. Sebastian: figure out which one you want :) llvm-svn: 107305
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/Sema/SemaOverload.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaOverload.cpp b/clang/lib/Sema/SemaOverload.cpp
index 344fb92c259..4f841b06518 100644
--- a/clang/lib/Sema/SemaOverload.cpp
+++ b/clang/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
OpenPOWER on IntegriCloud