From 47a91460da86e7d70d74ec669b5ee7666cd47c36 Mon Sep 17 00:00:00 2001 From: David Grove Date: Thu, 16 Feb 2017 13:07:27 -0500 Subject: [PATCH] Remove unused include of sys/user.h The include of sys/user.h is not needed; it is a leftover from the initial linux port. Eliminating it avoids a build problem for the Swift dispatch overlay on ubuntu 14.04 powerpc64le because the content of sys/user.h confuses the clang module importer when it attempts to import CDispatch. --- os/linux_base.h | 1 - 1 file changed, 1 deletion(-) diff --git a/os/linux_base.h b/os/linux_base.h index 96a3c825b..8173e12bf 100644 --- a/os/linux_base.h +++ b/os/linux_base.h @@ -13,7 +13,6 @@ #ifndef __OS_LINUX_BASE__ #define __OS_LINUX_BASE__ -#include #include #if __GNUC__