Skip to content

Commit 99c2829

Browse files
cf
1 parent bbc637a commit 99c2829

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

libcxx/include/__tree

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -582,25 +582,25 @@ class _LIBCPP_STANDALONE_DEBUG __tree_node : public __tree_node_base<_VoidPtr> {
582582
public:
583583
using __node_value_type _LIBCPP_NODEBUG = __get_node_value_type_t<_Tp>;
584584

585-
// We allow starting the lifetime of nodes without initializing the value held by the node,
586-
// since that is handled by the map itself in order to be allocator-aware.
587-
# ifndef _LIBCPP_CXX03_LANG
585+
// We allow starting the lifetime of nodes without initializing the value held by the node,
586+
// since that is handled by the map itself in order to be allocator-aware.
587+
#ifndef _LIBCPP_CXX03_LANG
588588

589-
private:
590-
union {
591-
__node_value_type __value_;
592-
};
589+
private:
590+
union {
591+
__node_value_type __value_;
592+
};
593593

594-
public:
595-
_LIBCPP_HIDE_FROM_ABI __node_value_type& __get_value() { return __value_; }
596-
# else
594+
public:
595+
_LIBCPP_HIDE_FROM_ABI __node_value_type& __get_value() { return __value_; }
596+
#else
597597

598-
private:
599-
_ALIGNAS_TYPE(__node_value_type) unsigned char __buffer_[sizeof(__node_value_type)];
598+
private:
599+
_ALIGNAS_TYPE(__node_value_type) unsigned char __buffer_[sizeof(__node_value_type)];
600600

601-
public:
602-
_LIBCPP_HIDE_FROM_ABI __node_value_type& __get_value() { return *std::__launder(reinterpret_cast<_Tp*>(&__buffer_)); }
603-
# endif
601+
public:
602+
_LIBCPP_HIDE_FROM_ABI __node_value_type& __get_value() { return *std::__launder(reinterpret_cast<_Tp*>(&__buffer_)); }
603+
#endif
604604

605605
template <class _Alloc, class... _Args>
606606
explicit __tree_node(_Alloc& __na, _Args&&... __args) {

0 commit comments

Comments
 (0)