From 5fccf86b075cb66fd30c21e6b86d27dbbaac151a Mon Sep 17 00:00:00 2001 From: James Beddek Date: Sat, 9 Oct 2021 20:40:35 +1300 Subject: [PATCH] UI: Fix build with Clang and libc++ std::bind conflicts with extern int bind defined in socket.h Signed-off-by: James Beddek --- UI/platform-x11.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/UI/platform-x11.cpp b/UI/platform-x11.cpp index b41f1c3c9..60035210a 100644 --- a/UI/platform-x11.cpp +++ b/UI/platform-x11.cpp @@ -48,7 +48,9 @@ #include #endif -using namespace std; +using std::string; +using std::vector; +using std::ostringstream; #ifdef __linux__ void RunningInstanceCheck(bool &already_running)