"Cannot convert parameter" using boost::variant iterator - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:16:56Z http://stackoverflow.com/feeds/question/970382 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/970382/cannot-convert-parameter-using-boostvariant-iterator 2 "Cannot convert parameter" using boost::variant iterator mxp 2009-06-09T14:26:56Z 2009-07-09T20:59:43Z <p>I want to create a function that can take different types of iterators which store the same type of object:<br /> The first is a <code>std::map</code> containing <code>shared_ptr&lt;Foo&gt;</code> (typedef-ed as <code>FooMap</code>) and the other is a <code>std::list</code> which also contains <code>shared_ptr&lt;Foo&gt;</code> (<code>FooList</code>).</p> <p>I really like <a href="http://stackoverflow.com/questions/9938/generic-iterator/127971#127971">the solution MSalters suggested for a similar question</a> and tried to implement <code>boost::variant</code> iterators, which the function will get as parameters to iterate from the first to the second.</p> <p>My function looks like this (simplified quite a bit):</p> <pre><code>set&lt;Foo&gt; CMyClass::GetUniqueFoos(FooIterator itBegin, FooIterator itEnd) { set&lt;Foo&gt; uniques; for(/**/; apply_visitor(do_compare(), itBegin, itEnd); // equals "itBegin != itEnd" apply_visitor(do_increment(), itBegin)) // equals "++itBegin" { // Exact mechanism for determining if unique is omitted for clarity uniques.insert( do_dereference&lt; shared_ptr&lt;Foo&gt; &gt;(), itBegin) ); } return uniques; } </code></pre> <p>The FooIterator and the visitors are defined as follows:</p> <pre><code>typedef boost::variant&lt; FooMap::const_iterator, FooList::const_iterator&gt; FooIterator; struct do_compare : boost::static_visitor&lt;bool&gt; { bool operator() ( const FooMap::const_iterator &amp; a, const FooMap::const_iterator &amp; b) const { return a != b; } bool operator() ( const FooList::const_iterator &amp; a, const FooList::const_iterator &amp; b) const { return a != b; } }; struct do_increment: boost::static_visitor&lt;void&gt; { template&lt;typename T&gt; void operator()( T&amp; t ) const { ++t; } }; template&lt; typename Reference &gt; struct do_dereference: boost::static_visitor&lt;Reference&gt; { template&lt;typename T&gt; Reference operator()( const T&amp; t ) const { return *t; } }; </code></pre> <p>I got most of the above <a href="http://aspn.activestate.com/ASPN/Mail/Message/boost/1566813" rel="nofollow">from the attachment of this mail</a>. That solution also uses adaptors and policies, which seems to be a little too much, according to the answer of MSalters, so I don't want to simply copy that code. Especially as I only understand part of it.</p> <p>With the above code I get the following compiler error from VS2008 (this is only the first few lines of 160 in total, which I think is a bit too much to post here; however I'll be happy to add them If somebody wants to see it all):</p> <pre><code>1&gt;c:\boost\boost\variant\detail\apply_visitor_binary.hpp(63) : error C2664: 'bool CMyClass::do_compare::operator ()( const std::list&lt;_Ty&gt;::_Const_iterator&lt;_Secure_validation&gt; &amp;, const std::list&lt;_Ty&gt;::_Const_iterator&lt;_Secure_validation&gt; &amp;) const' : cannot convert parameter 1 from 'T0' to 'const std::list&lt;_Ty&gt;::_Const_iterator&lt;_Secure_validation&gt; &amp;' 1&gt; with 1&gt; [ 1&gt; _Ty=shared_ptr&lt;Foo&gt;, 1&gt; _Secure_validation=true 1&gt; ] 1&gt; Reason: cannot convert from 'T0' to 'const std::list&lt;_Ty&gt;::_Const_iterator&lt;_Secure_validation&gt;' 1&gt; with 1&gt; [ 1&gt; _Ty=shared_ptr&lt;Foo&gt;, 1&gt; _Secure_validation=true 1&gt; ] 1&gt; No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called 1&gt; c:\boost\boost\variant\variant.hpp(806) : see reference to function template instantiation 'bool boost::detail::variant::apply_visitor_binary_invoke&lt;Visitor,Value1&gt;::operator ()&lt;T&gt;(Value2 &amp;)' being compiled 1&gt; with 1&gt; [ 1&gt; Visitor=const CMyClass::do_co http://stackoverflow.com/questions/970382/cannot-convert-parameter-using-boostvariant-iterator/970496#970496 5 Answer by Todd Gardner for "Cannot convert parameter" using boost::variant iterator Todd Gardner 2009-06-09T14:47:44Z 2009-06-09T15:58:33Z <p>I suspect you are missing cases on your do_compare static_visitor. Remeber, the variants might have anything, so you need all possible combinations, like comparing a FooList::const_iterator to a FooMap::const_iterator. It's complaining because the compiler is trying to find some match for that case, and can't convert a FooMap::const_iterator to a FooList::const_iterator.</p> <p>Hammering it out:</p> <pre><code>struct do_compare : boost::static_visitor&lt;bool&gt; { bool operator() ( const FooMap::const_iterator &amp; a, const FooMap::const_iterator &amp; b) const { return a != b; } bool operator() ( const FooList::const_iterator &amp; a, const FooList::const_iterator &amp; b) const { return a != b; } bool operator() ( const FooMap::const_iterator &amp; a, const FooList::const_iterator &amp; b) const { return false; } bool operator() ( const FooList::const_iterator &amp; a, const FooMap::const_iterator &amp; b) const { return false; } }; </code></pre> <p>Here's a version with templates:</p> <pre><code>template &lt;typename A, typename B&gt; bool operator() ( const A &amp; a, const B &amp; b) const { return false; } template &lt;typename A&gt; bool operator() ( const A &amp; a, const A &amp; b) const { return a != b; } </code></pre> <p>It's compiling on comeau, but I'm not 100% it will work, so some testing is required. Other than cleaner, more versatile code, it shouldn't have any effect, as long as it works.</p>