forked from OSchip/llvm-project
Fixed a build warning where no return values was being returned.
llvm-svn: 114511
This commit is contained in:
parent
07827ba978
commit
d7aa114ecc
|
@ -940,7 +940,9 @@ TargetInstanceSettings::GetInstanceSettingsValue (const SettingEntry &entry,
|
|||
StringList &value,
|
||||
Error *err)
|
||||
{
|
||||
// Currently 'target' does not have any instance settings.
|
||||
if (err)
|
||||
err->SetErrorString ("'target' does not have any instance settings");
|
||||
return false;
|
||||
}
|
||||
|
||||
const ConstString
|
||||
|
|
Loading…
Reference in New Issue