mirror of
https://github.com/boostorg/graph.git
synced 2026-01-30 07:52:10 +00:00
removed redundant initialization of member c
[SVN r22264]
This commit is contained in:
@@ -78,7 +78,7 @@ namespace boost {
|
||||
template <class InputIterator>
|
||||
mutable_queue(InputIterator first, InputIterator last,
|
||||
const Comp& x, const ID& _id)
|
||||
: index_array(last-first), c(first, last), comp(x), id(_id)
|
||||
: index_array(last-first), comp(x), id(_id)
|
||||
{
|
||||
while( first != last ) {
|
||||
push(*first);
|
||||
|
||||
Reference in New Issue
Block a user