Re: Tree Hashing / Equivalence
Carl Barron wrote:
In article <1170602680.390014.84700@v45g2000cwv.googlegroups.com>,
James Kanze <james.kanze@gmail.com> wrote:
FWIW: I've just downloaded the latest version of Boost here,
and verified. It does have the above (minus
allocator_type). And the code doesn't compile with g++.
which g++ ?
4.0.1, I think. (I did the test at home, and from memory,
that's the one I have there.) I can give it a try here with
4.1. But I've encountered this sort of thing before. Starting
with 4.0, g++ added concept checking code explicitly to catch
these sort of errors (which are undefined behavior as far as the
standard is concerned). Of course, you have to activate the
debugging modes. (Although I don't know why, since I don't
think the concept checking has the slightest effect on generated
code.)
. Lots of questions about trees occur on the spirit mailing
list but none saying that tree_node<T> does not compile. Just
wondering.
Well, I'm not at all 100% sure I'm using it correctly. I just
included the specified header, then tried to instantiate the
class (with int). Perhaps all of the actual uses depend on an
explicit specialization which avoids the problem.
The fact remains, however, that the class in question has
undefined behavior, according to the standard, and that concept
checking, as implemented in g++ 4.0 up (and I think there is
some discussion of requiring it in the next version of the
standard), will detect this undefined behavior, and generate an
error, if the template is instantiated.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient?e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S?mard, 78210 St.-Cyr-l'?cole, France, +33 (0)1 30 23 00 34
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]