diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-02-19 22:53:42 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2014-02-19 22:53:42 +0000 |
commit | 294e59a33b2d7d8c179727e2c86f42039274481d (patch) | |
tree | ba3cf96707257ae6b7525a57e335a031d225ce68 /clang/lib/Headers/float.h | |
parent | ed3f0693cbd0b8161614e644d9c8c195e1b57dd1 (diff) | |
download | bcm5719-llvm-294e59a33b2d7d8c179727e2c86f42039274481d.tar.gz bcm5719-llvm-294e59a33b2d7d8c179727e2c86f42039274481d.zip |
Remove a broken attempt to cope with someone #undef'ing __has_include_next.
This was broken because __has_include_next(...) would not be valid in a
preprocessor condition if __has_include_next is not defined.
llvm-svn: 201731
Diffstat (limited to 'clang/lib/Headers/float.h')
-rw-r--r-- | clang/lib/Headers/float.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Headers/float.h b/clang/lib/Headers/float.h index 2cb13d3ed55..02ef6bf611a 100644 --- a/clang/lib/Headers/float.h +++ b/clang/lib/Headers/float.h @@ -29,7 +29,7 @@ * For more details see http://msdn.microsoft.com/en-us/library/y0ybw9fy.aspx */ #if (defined(__MINGW32__) || defined(_MSC_VER)) && \ - defined(__has_include_next) && __has_include_next(<float.h>) + __has_include_next(<float.h>) # include_next <float.h> /* Undefine anything that we'll be redefining below. */ |