Manually implement node_handle_base's default constructor instead of defaulting it which can delete it on older toolchains

This commit is contained in:
Christian Mazakas
2023-02-10 15:16:59 -08:00
parent 5df80086ed
commit b8ff76f4ab

View File

@ -93,7 +93,7 @@ struct node_handle_base
} }
public: public:
constexpr node_handle_base()noexcept=default; constexpr node_handle_base()noexcept{}
node_handle_base(node_handle_base&& nh) noexcept node_handle_base(node_handle_base&& nh) noexcept
{ {