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