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/chrono.cpp | |
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/chrono.cpp')
-rw-r--r-- | libcxx/src/chrono.cpp | 6 |
1 files changed, 3 insertions, 3 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 |