diff options
author | Dan Albert <danalbert@google.com> | 2015-01-06 17:34:51 +0000 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2015-01-06 17:34:51 +0000 |
commit | a76dfbd4288271d3a61fe2f4307c406780ce7c49 (patch) | |
tree | ce1ec4e052a17695a3e64fc5ea08d7cd2f87a8c3 /libcxx/src/ios.cpp | |
parent | 8335a5724a352ce7ae44c5ca450f85fd2576fcf0 (diff) | |
download | bcm5719-llvm-a76dfbd4288271d3a61fe2f4307c406780ce7c49.tar.gz bcm5719-llvm-a76dfbd4288271d3a61fe2f4307c406780ce7c49.zip |
[libcxx] Set _LIBCPP_ELAST for mingw.
Reviewers: K-ballo, mclow.lists, EricWF
Reviewed By: EricWF
Subscribers: jfb, jroelofs, majnemer, cfe-commits
Differential Revision: http://reviews.llvm.org/D6558
llvm-svn: 225273
Diffstat (limited to 'libcxx/src/ios.cpp')
-rw-r--r-- | libcxx/src/ios.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/libcxx/src/ios.cpp b/libcxx/src/ios.cpp index d879beb3801..90972c407d7 100644 --- a/libcxx/src/ios.cpp +++ b/libcxx/src/ios.cpp @@ -8,16 +8,20 @@ //===----------------------------------------------------------------------===// #include "__config" + #include "ios" -#include "streambuf" -#include "istream" -#include "string" + +#include <stdlib.h> + #include "__locale" #include "algorithm" +#include "config_elast.h" +#include "istream" +#include "limits" #include "memory" #include "new" -#include "limits" -#include <stdlib.h> +#include "streambuf" +#include "string" _LIBCPP_BEGIN_NAMESPACE_STD |