diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-06-23 14:45:02 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-06-23 14:45:02 +0000 |
commit | 4daa9f1e105dc552f9e2e0f5c89ed6a822e7f4d9 (patch) | |
tree | bf6d395c297124c73e7dcc9202adfadc0391dfce /libcxx/src | |
parent | 6763f5a43e95bcedb344e3007bcf394a7a0afaff (diff) | |
download | bcm5719-llvm-4daa9f1e105dc552f9e2e0f5c89ed6a822e7f4d9.tar.gz bcm5719-llvm-4daa9f1e105dc552f9e2e0f5c89ed6a822e7f4d9.zip |
When building libc++, we use '"' as a delimiter instead of '<' when including libc++ header files. This is so that the dylib gets built with our headers; rather than the system-installed ones. We do this in most places already, just fixing a couple of inconsistent uses.
llvm-svn: 240412
Diffstat (limited to 'libcxx/src')
-rw-r--r-- | libcxx/src/chrono.cpp | 6 | ||||
-rw-r--r-- | libcxx/src/locale.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/src/chrono.cpp b/libcxx/src/chrono.cpp index 57c74175b3f..62149fbf420 100644 --- a/libcxx/src/chrono.cpp +++ b/libcxx/src/chrono.cpp @@ -8,9 +8,9 @@ //===----------------------------------------------------------------------===// #include "chrono" -#include <cerrno> // errno -#include <system_error> // __throw_system_error -#include <time.h> // clock_gettime, CLOCK_MONOTONIC and CLOCK_REALTIME +#include "cerrno" // errno +#include "system_error" // __throw_system_error +#include <time.h> // clock_gettime, CLOCK_MONOTONIC and CLOCK_REALTIME #if !defined(CLOCK_REALTIME) #include <sys/time.h> // for gettimeofday and timeval diff --git a/libcxx/src/locale.cpp b/libcxx/src/locale.cpp index dafe14e8cda..abf7ecfac85 100644 --- a/libcxx/src/locale.cpp +++ b/libcxx/src/locale.cpp @@ -27,7 +27,7 @@ #include "cwctype" #include "__sso_allocator" #if defined(_LIBCPP_MSVCRT) || defined(__MINGW32__) -#include <support/win32/locale_win32.h> +#include "support/win32/locale_win32.h" #elif !defined(__ANDROID__) #include <langinfo.h> #endif |