1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Fix build after r305892

Make sure to #include <cerrno> in Support/Errno.h

llvm-svn: 305895
This commit is contained in:
Pavel Labath 2017-06-21 11:10:02 +00:00
parent 6d663c0325
commit 4ee0c597f4

View File

@ -14,6 +14,7 @@
#ifndef LLVM_SUPPORT_ERRNO_H
#define LLVM_SUPPORT_ERRNO_H
#include <cerrno>
#include <string>
#include <type_traits>