Avoid need for AppleObjCRuntime on FreeBSD

Since it is unlikely to provide much value to us, just #if 0 it away

Sponsored by:	DARPA, AFRL
This commit is contained in:
Ed Maste 2014-11-26 17:22:37 +00:00
parent 85dd3ec148
commit a01d545e93
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/clang350-import/; revision=275128

View File

@ -611,6 +611,8 @@ lldb_private::formatters::NSArrayISyntheticFrontEnd::GetChildAtIndex (size_t idx
SyntheticChildrenFrontEnd* lldb_private::formatters::NSArraySyntheticFrontEndCreator (CXXSyntheticChildren*, lldb::ValueObjectSP valobj_sp)
{
return nullptr; // Avoid need for AppleObjCRuntime on FreeBSD
#if 0
if (!valobj_sp)
return nullptr;
@ -657,6 +659,7 @@ SyntheticChildrenFrontEnd* lldb_private::formatters::NSArraySyntheticFrontEndCre
{
return (new NSArrayCodeRunningSyntheticFrontEnd(valobj_sp));
}
#endif
}
lldb_private::formatters::NSArrayCodeRunningSyntheticFrontEnd::NSArrayCodeRunningSyntheticFrontEnd (lldb::ValueObjectSP valobj_sp) :