Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-07-12 04:34:21 +0300
committerEric Fiselier <eric@efcs.ca>2017-07-12 04:34:21 +0300
commit84800d999c65cbff6cade7dfc6e67ce2d888742c (patch)
treee73317ce1f5247a67dc3a88963b114daaf103c63 /libcxxabi/src/stdlib_stdexcept.cpp
parent053b084263e369c63e5f865ec6d9f88c835c8e57 (diff)
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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/stdlib_stdexcept.cpp b/libcxxabi/src/stdlib_stdexcept.cpp
index bd6789ef227d..e3b7cd406583 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>