2
0
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:
Jeremy Siek
2004-02-15 15:50:03 +00:00
parent 3c641d4ec2
commit e29266e8a5

View File

@@ -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);