diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-07-12 01:34:21 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-07-12 01:34:21 +0000 |
commit | 84800d999c65cbff6cade7dfc6e67ce2d888742c (patch) | |
tree | e73317ce1f5247a67dc3a88963b114daaf103c63 /libcxxabi/src/stdlib_stdexcept.cpp | |
parent | 053b084263e369c63e5f865ec6d9f88c835c8e57 (diff) | |
download | bcm5719-llvm-84800d999c65cbff6cade7dfc6e67ce2d888742c.tar.gz bcm5719-llvm-84800d999c65cbff6cade7dfc6e67ce2d888742c.zip |
Remove dependancy on __refstring header; use local copy instead.
This patch removes the dependancy on libc++'s __refstring header,
which was only a header in the first place so that libc++abi could
build library code using it, and not because libc++ needed it in
the headers.
This patch allows libc++ to stop shipping <__refstring> publicaly
at the cost of duplicating it across projects. Ideally libc++abi
would always require the libc++ sources when building, but that's
a separate discussion I plan to start on the mailing lists shortly.
llvm-svn: 307748
Diffstat (limited to 'libcxxabi/src/stdlib_stdexcept.cpp')
-rw-r--r-- | libcxxabi/src/stdlib_stdexcept.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/stdlib_stdexcept.cpp b/libcxxabi/src/stdlib_stdexcept.cpp index bd6789ef227..e3b7cd40658 100644 --- a/libcxxabi/src/stdlib_stdexcept.cpp +++ b/libcxxabi/src/stdlib_stdexcept.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "__refstring" +#include "include/refstring.h" #include "stdexcept" #include "new" #include <cstdlib> |