forked from OSchip/llvm-project
Add a return to silence a warning. Alternately a default: return false
would work. Sebastian: figure out which one you want :) llvm-svn: 107305
This commit is contained in:
parent
88d5a91f0d
commit
aba9fb217e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue