commit | adeb7822cb7947194fef0e12d2d6583ccb8240b5 | [log] [tgz] |
---|---|---|
author | Dmitri Gribenko <gribozavr@gmail.com> | Sat Jan 26 16:29:36 2013 +0000 |
committer | Dmitri Gribenko <gribozavr@gmail.com> | Sat Jan 26 16:29:36 2013 +0000 |
tree | d1a6b44e7f931dc9e9c90c368743f27639132a3a | |
parent | ff74f9683943c0db9cb075423596b00ea3b38c5d [diff] [blame] |
<limits.h> includes <linux/limits.h> on Linux, no need to special-case it git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173578 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Basic/FileManager.cpp b/lib/Basic/FileManager.cpp index 19f170e..9cc5902 100644 --- a/lib/Basic/FileManager.cpp +++ b/lib/Basic/FileManager.cpp
@@ -41,9 +41,7 @@ #endif #endif #if defined(LLVM_ON_UNIX) -#if defined(__linux__) -#include <linux/limits.h> -#endif +#include <limits.h> #endif using namespace clang;