Jean-Marc Lasgouttes wrote:
Abdelrazak> I told you already that there are some clash with the
Abdelrazak> void* operator.
Yes, and then I made the following 'explicit':
///
ParIterator(DocIterator const &);
///
ParConstIterator(DocIterator const &);
Having them implicit causees g++ to transform a DocIterator to
ParIterator for no good reason (when you want to compare two
dociterators, for example). This mostly work, but then you have to
cleanup the lazy code that mixes ParIterator and ParConstIterator.
I already have an headache...
All in all, not a job for now.
Right.
Abdel.