[libc++] Remove _LIBCPP_BUILDING_XXX macros, which are redundant since _LIBCPP_BUILDING_LIBRARY
Summary: As suggested by Marshall in https://reviews.llvm.org/D49914 Reviewers: mclow.lists, EricWF Subscribers: christof, dexonsmith, cfe-commits Differential Revision: https://reviews.llvm.org/D50008 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@338475 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -561,7 +561,7 @@ struct __is_transparent<_Tp, _Up,
|
|||||||
|
|
||||||
struct _LIBCPP_TEMPLATE_VIS allocator_arg_t { };
|
struct _LIBCPP_TEMPLATE_VIS allocator_arg_t { };
|
||||||
|
|
||||||
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_MEMORY)
|
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_LIBRARY)
|
||||||
extern const allocator_arg_t allocator_arg;
|
extern const allocator_arg_t allocator_arg;
|
||||||
#else
|
#else
|
||||||
/* _LIBCPP_INLINE_VAR */ constexpr allocator_arg_t allocator_arg = allocator_arg_t();
|
/* _LIBCPP_INLINE_VAR */ constexpr allocator_arg_t allocator_arg = allocator_arg_t();
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ struct _LIBCPP_TYPE_VIS defer_lock_t {};
|
|||||||
struct _LIBCPP_TYPE_VIS try_to_lock_t {};
|
struct _LIBCPP_TYPE_VIS try_to_lock_t {};
|
||||||
struct _LIBCPP_TYPE_VIS adopt_lock_t {};
|
struct _LIBCPP_TYPE_VIS adopt_lock_t {};
|
||||||
|
|
||||||
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_MUTEX)
|
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_LIBRARY)
|
||||||
|
|
||||||
extern const defer_lock_t defer_lock;
|
extern const defer_lock_t defer_lock;
|
||||||
extern const try_to_lock_t try_to_lock;
|
extern const try_to_lock_t try_to_lock;
|
||||||
|
|||||||
@@ -2005,7 +2005,7 @@ namespace placeholders
|
|||||||
|
|
||||||
template <int _Np> struct __ph {};
|
template <int _Np> struct __ph {};
|
||||||
|
|
||||||
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_BIND)
|
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_LIBRARY)
|
||||||
_LIBCPP_FUNC_VIS extern const __ph<1> _1;
|
_LIBCPP_FUNC_VIS extern const __ph<1> _1;
|
||||||
_LIBCPP_FUNC_VIS extern const __ph<2> _2;
|
_LIBCPP_FUNC_VIS extern const __ph<2> _2;
|
||||||
_LIBCPP_FUNC_VIS extern const __ph<3> _3;
|
_LIBCPP_FUNC_VIS extern const __ph<3> _3;
|
||||||
@@ -2027,7 +2027,7 @@ _LIBCPP_FUNC_VIS extern const __ph<10> _10;
|
|||||||
/* _LIBCPP_INLINE_VAR */ constexpr __ph<8> _8{};
|
/* _LIBCPP_INLINE_VAR */ constexpr __ph<8> _8{};
|
||||||
/* _LIBCPP_INLINE_VAR */ constexpr __ph<9> _9{};
|
/* _LIBCPP_INLINE_VAR */ constexpr __ph<9> _9{};
|
||||||
/* _LIBCPP_INLINE_VAR */ constexpr __ph<10> _10{};
|
/* _LIBCPP_INLINE_VAR */ constexpr __ph<10> _10{};
|
||||||
#endif // defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_BIND)
|
#endif // defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_LIBRARY)
|
||||||
|
|
||||||
} // placeholders
|
} // placeholders
|
||||||
|
|
||||||
|
|||||||
@@ -3511,7 +3511,7 @@ public:
|
|||||||
explicit __shared_count(long __refs = 0) _NOEXCEPT
|
explicit __shared_count(long __refs = 0) _NOEXCEPT
|
||||||
: __shared_owners_(__refs) {}
|
: __shared_owners_(__refs) {}
|
||||||
|
|
||||||
#if defined(_LIBCPP_BUILDING_MEMORY) && \
|
#if defined(_LIBCPP_BUILDING_LIBRARY) && \
|
||||||
defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
|
defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
|
||||||
void __add_shared() _NOEXCEPT;
|
void __add_shared() _NOEXCEPT;
|
||||||
bool __release_shared() _NOEXCEPT;
|
bool __release_shared() _NOEXCEPT;
|
||||||
@@ -3549,7 +3549,7 @@ protected:
|
|||||||
virtual ~__shared_weak_count();
|
virtual ~__shared_weak_count();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
#if defined(_LIBCPP_BUILDING_MEMORY) && \
|
#if defined(_LIBCPP_BUILDING_LIBRARY) && \
|
||||||
defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
|
defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
|
||||||
void __add_shared() _NOEXCEPT;
|
void __add_shared() _NOEXCEPT;
|
||||||
void __add_weak() _NOEXCEPT;
|
void __add_weak() _NOEXCEPT;
|
||||||
@@ -5549,7 +5549,7 @@ struct _LIBCPP_TYPE_VIS pointer_safety
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(_LIBCPP_ABI_POINTER_SAFETY_ENUM_TYPE) && \
|
#if !defined(_LIBCPP_ABI_POINTER_SAFETY_ENUM_TYPE) && \
|
||||||
defined(_LIBCPP_BUILDING_MEMORY)
|
defined(_LIBCPP_BUILDING_LIBRARY)
|
||||||
_LIBCPP_FUNC_VIS pointer_safety get_pointer_safety() _NOEXCEPT;
|
_LIBCPP_FUNC_VIS pointer_safety get_pointer_safety() _NOEXCEPT;
|
||||||
#else
|
#else
|
||||||
// This function is only offered in C++03 under ABI v1.
|
// This function is only offered in C++03 under ABI v1.
|
||||||
|
|||||||
@@ -103,13 +103,13 @@ void operator delete[](void* ptr, void*) noexcept;
|
|||||||
#pragma GCC system_header
|
#pragma GCC system_header
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !(defined(_LIBCPP_BUILDING_NEW) || _LIBCPP_STD_VER >= 14 || \
|
#if !(defined(_LIBCPP_BUILDING_LIBRARY) || _LIBCPP_STD_VER >= 14 || \
|
||||||
(defined(__cpp_sized_deallocation) && __cpp_sized_deallocation >= 201309))
|
(defined(__cpp_sized_deallocation) && __cpp_sized_deallocation >= 201309))
|
||||||
# define _LIBCPP_HAS_NO_SIZED_DEALLOCATION
|
# define _LIBCPP_HAS_NO_SIZED_DEALLOCATION
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) && \
|
#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) && \
|
||||||
(!(defined(_LIBCPP_BUILDING_NEW) || _LIBCPP_STD_VER > 14 || \
|
(!(defined(_LIBCPP_BUILDING_LIBRARY) || _LIBCPP_STD_VER > 14 || \
|
||||||
(defined(__cpp_aligned_new) && __cpp_aligned_new >= 201606)))
|
(defined(__cpp_aligned_new) && __cpp_aligned_new >= 201606)))
|
||||||
# define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
# define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
||||||
#endif
|
#endif
|
||||||
@@ -167,7 +167,7 @@ public:
|
|||||||
|
|
||||||
#define _LIBCPP_BAD_ARRAY_LENGTH_DEFINED
|
#define _LIBCPP_BAD_ARRAY_LENGTH_DEFINED
|
||||||
|
|
||||||
#endif // defined(_LIBCPP_BUILDING_NEW) || (_LIBCPP_STD_VER > 11)
|
#endif // defined(_LIBCPP_BUILDING_LIBRARY) || (_LIBCPP_STD_VER > 11)
|
||||||
|
|
||||||
#if !defined(_LIBCPP_ABI_MICROSOFT) || defined(_LIBCPP_NO_VCRUNTIME)
|
#if !defined(_LIBCPP_ABI_MICROSOFT) || defined(_LIBCPP_NO_VCRUNTIME)
|
||||||
#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) || _LIBCPP_STD_VER > 14
|
#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) || _LIBCPP_STD_VER > 14
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ _LIBCPP_PUSH_MACROS
|
|||||||
#include <__undef_macros>
|
#include <__undef_macros>
|
||||||
|
|
||||||
|
|
||||||
#if _LIBCPP_STD_VER > 11 || defined(_LIBCPP_BUILDING_SHARED_MUTEX)
|
#if _LIBCPP_STD_VER > 11 || defined(_LIBCPP_BUILDING_LIBRARY)
|
||||||
|
|
||||||
#include <__mutex_base>
|
#include <__mutex_base>
|
||||||
|
|
||||||
|
|||||||
@@ -199,7 +199,7 @@ class _LIBCPP_TYPE_VIS error_category
|
|||||||
public:
|
public:
|
||||||
virtual ~error_category() _NOEXCEPT;
|
virtual ~error_category() _NOEXCEPT;
|
||||||
|
|
||||||
#if defined(_LIBCPP_BUILDING_SYSTEM_ERROR) && \
|
#if defined(_LIBCPP_BUILDING_LIBRARY) && \
|
||||||
defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
|
defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
|
||||||
error_category() _NOEXCEPT;
|
error_category() _NOEXCEPT;
|
||||||
#else
|
#else
|
||||||
|
|||||||
@@ -295,7 +295,7 @@ template <class _Tp> void as_const(const _Tp&&) = delete;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct _LIBCPP_TEMPLATE_VIS piecewise_construct_t { };
|
struct _LIBCPP_TEMPLATE_VIS piecewise_construct_t { };
|
||||||
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_UTILITY)
|
#if defined(_LIBCPP_CXX03_LANG) || defined(_LIBCPP_BUILDING_LIBRARY)
|
||||||
extern const piecewise_construct_t piecewise_construct;// = piecewise_construct_t();
|
extern const piecewise_construct_t piecewise_construct;// = piecewise_construct_t();
|
||||||
#else
|
#else
|
||||||
/* _LIBCPP_INLINE_VAR */ constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
|
/* _LIBCPP_INLINE_VAR */ constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#define _LIBCPP_BUILDING_BIND
|
|
||||||
#include "functional"
|
#include "functional"
|
||||||
|
|
||||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#define _LIBCPP_BUILDING_MEMORY
|
|
||||||
#include "memory"
|
#include "memory"
|
||||||
#ifndef _LIBCPP_HAS_NO_THREADS
|
#ifndef _LIBCPP_HAS_NO_THREADS
|
||||||
#include "mutex"
|
#include "mutex"
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#define _LIBCPP_BUILDING_MUTEX
|
|
||||||
#include "mutex"
|
#include "mutex"
|
||||||
#include "limits"
|
#include "limits"
|
||||||
#include "system_error"
|
#include "system_error"
|
||||||
|
|||||||
@@ -7,8 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#define _LIBCPP_BUILDING_NEW
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "new"
|
#include "new"
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
#include "__config"
|
#include "__config"
|
||||||
#ifndef _LIBCPP_HAS_NO_THREADS
|
#ifndef _LIBCPP_HAS_NO_THREADS
|
||||||
|
|
||||||
#define _LIBCPP_BUILDING_SHARED_MUTEX
|
|
||||||
#include "shared_mutex"
|
#include "shared_mutex"
|
||||||
|
|
||||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
|
|
||||||
#include "__config"
|
#include "__config"
|
||||||
|
|
||||||
#define _LIBCPP_BUILDING_SYSTEM_ERROR
|
|
||||||
#include "system_error"
|
#include "system_error"
|
||||||
|
|
||||||
#include "include/config_elast.h"
|
#include "include/config_elast.h"
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#define _LIBCPP_BUILDING_UTILITY
|
|
||||||
#include "utility"
|
#include "utility"
|
||||||
|
|
||||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||||
|
|||||||
Reference in New Issue
Block a user