id summary reporter owner description type status milestone component version severity resolution keywords cc 10723 UNINIT_CTOR(boost::​multi_index::​detail::​bidir_node_iterator Joaquín M López Muñoz "In default constructor for the class ""bidir_node_iterator "" the private members are not initialized hence it shows a code quality error UNINIT_CTOR() as defined below :- template class bidir_node_iterator: public bidirectional_iterator_helper< bidir_node_iterator, typename Node::value_type, std::ptrdiff_t, const typename Node::value_type*, const typename Node::value_type&> { public: ''' Uninitialized pointer field (UNINIT_CTOR)2. uninit_member: Non-static class member ""node"" is not initialized in this constructor nor in any functions that it calls. bidir_node_iterator(){}''' * * private: Node* node; } '''*** This Private member has to be initialized in default constructor ***'''" Bugs closed To Be Determined multi_index Boost 1.54.0 Cosmetic fixed UNINIT_CTOR