[Lldb-commits] [lldb] r288674 - Remove superfluous android include

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 5 06:57:23 PST 2016


Author: labath
Date: Mon Dec  5 08:57:23 2016
New Revision: 288674

URL: http://llvm.org/viewvc/llvm-project?rev=288674&view=rev
Log:
Remove superfluous android include

This file is not in the include path when building with a non-standalone
toolchain. In does not seem to be necessary anyway.

Modified:
    lldb/trunk/source/Host/common/Socket.cpp

Modified: lldb/trunk/source/Host/common/Socket.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/Socket.cpp?rev=288674&r1=288673&r2=288674&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/Socket.cpp (original)
+++ lldb/trunk/source/Host/common/Socket.cpp Mon Dec  5 08:57:23 2016
@@ -36,7 +36,6 @@
 #ifdef __ANDROID__
 #include <arpa/inet.h>
 #include <asm-generic/errno-base.h>
-#include <bits/error_constants.h>
 #include <errno.h>
 #include <linux/tcp.h>
 #if defined(ANDROID_ARM_BUILD_STATIC) || defined(ANDROID_MIPS_BUILD_STATIC)




More information about the lldb-commits mailing list