Remove maybe uninitialized warnings when using insert_commit_data_t

This commit is contained in:
Ion Gaztañaga
2017-02-23 19:55:07 +01:00
parent 6fe1181578
commit 95bba145ea

View File

@@ -37,6 +37,9 @@ namespace intrusive {
template <class NodePtr>
struct insert_commit_data_t
{
BOOST_INTRUSIVE_FORCEINLINE insert_commit_data_t()
: link_left(false), node()
{}
bool link_left;
NodePtr node;
};