From e29266e8a5482284f84672bfc3040dfdd01cce20 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sun, 15 Feb 2004 15:50:03 +0000 Subject: [PATCH] removed redundant initialization of member c [SVN r22264] --- include/boost/pending/mutable_queue.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/pending/mutable_queue.hpp b/include/boost/pending/mutable_queue.hpp index f9396024..d879d99a 100644 --- a/include/boost/pending/mutable_queue.hpp +++ b/include/boost/pending/mutable_queue.hpp @@ -78,7 +78,7 @@ namespace boost { template 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);