forked from OSchip/llvm-project
OptionValueProperties::DeepCopy (): return empty value to avoid compilation error on MSVC (even if assert).
llvm-svn: 190069
This commit is contained in:
parent
228444b7bf
commit
51d2191316
|
@ -651,6 +651,7 @@ lldb::OptionValueSP
|
|||
OptionValueProperties::DeepCopy () const
|
||||
{
|
||||
assert(!"this shouldn't happen");
|
||||
return lldb::OptionValueSP();
|
||||
}
|
||||
|
||||
const Property *
|
||||
|
|
Loading…
Reference in New Issue