[Lldb-commits] [lldb] r293161 - Removed an unneccesary #if now that debugserver-mini links Foundation.

Sean Callanan via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 26 00:51:33 PST 2017


Author: spyffe
Date: Thu Jan 26 02:51:32 2017
New Revision: 293161

URL: http://llvm.org/viewvc/llvm-project?rev=293161&view=rev
Log:
Removed an unneccesary #if now that debugserver-mini links Foundation.

Modified:
    lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm

Modified: lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm?rev=293161&r1=293160&r2=293161&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm (original)
+++ lldb/trunk/tools/debugserver/source/MacOSX/MachProcess.mm Thu Jan 26 02:51:32 2017
@@ -2449,8 +2449,6 @@ bool MachProcess::GetOSVersionNumbers(ui
 #if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) &&                  \
     (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 101000)
   return false;
-#elif defined(OS_OBJECT_USE_OBJC) && (OS_OBJECT_USE_OBJC == 0)
-  return false;
 #else
   NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 




More information about the lldb-commits mailing list