From f0834cc1aa293f779005d11c39cd2874be9510f2 Mon Sep 17 00:00:00 2001 From: osen Date: Thu, 27 Feb 2020 23:14:40 +0000 Subject: On OpenBSD (6.6) libc++ fileno is defined as a MACRO which doesn't work with :: (#2669) --- third_party/llvm-project/raw_ostream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'third_party') diff --git a/third_party/llvm-project/raw_ostream.cpp b/third_party/llvm-project/raw_ostream.cpp index 63e0fcbf1..5dd0f4ec1 100644 --- a/third_party/llvm-project/raw_ostream.cpp +++ b/third_party/llvm-project/raw_ostream.cpp @@ -523,7 +523,7 @@ static int getFD(StringRef Filename, std::error_code &EC, sys::fs::CreationDisposition Disp, sys::fs::FileAccess Access, sys::fs::OpenFlags Flags) { // XXX BINARYEN - we only ever use IO from LLVM to log to stdout - return ::fileno(stdout); + return fileno(stdout); } raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC) -- cgit v1.2.3