diff options
-rw-r--r-- | libcxx/src/include/refstring.h (renamed from libcxx/include/__refstring) | 6 | ||||
-rw-r--r-- | libcxx/src/stdexcept.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/__refstring b/libcxx/src/include/refstring.h index 7f417a0..f0d5b44 100644 --- a/libcxx/include/__refstring +++ b/libcxx/src/include/refstring.h @@ -7,8 +7,8 @@ // //===----------------------------------------------------------------------===// -#ifndef _LIBCPP___REFSTRING -#define _LIBCPP___REFSTRING +#ifndef _LIBCPP_REFSTRING_H +#define _LIBCPP_REFSTRING_H #include <__config> #include <stdexcept> @@ -124,4 +124,4 @@ bool __libcpp_refstring::__uses_refcount() const { _LIBCPP_END_NAMESPACE_STD -#endif //_LIBCPP___REFSTRING +#endif //_LIBCPP_REFSTRING_H diff --git a/libcxx/src/stdexcept.cpp b/libcxx/src/stdexcept.cpp index 3f33330..5e06e52 100644 --- a/libcxx/src/stdexcept.cpp +++ b/libcxx/src/stdexcept.cpp @@ -11,7 +11,7 @@ #include "new" #include "string" #include "system_error" -#include "__refstring" +#include "include/refstring.h" /* For _LIBCPPABI_VERSION */ #if !defined(_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY) && \ |