From 73265c6f26b735894375aa9d793d7165848b16e7 Mon Sep 17 00:00:00 2001 From: Dejan Jovanović Date: Fri, 26 Feb 2010 02:25:52 +0000 Subject: Changing the hashing in attributes to what Nodes do, i.e. hash on the id of the node-value. This keeps coming up so we should rename the .hash() method in the node-value to something else. Morgan, feel free to change, but I had to go in as we were stuck on infinite parsing again. --- src/expr/attribute.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/expr/attribute.h b/src/expr/attribute.h index c56725f18..d7514d50c 100644 --- a/src/expr/attribute.h +++ b/src/expr/attribute.h @@ -46,7 +46,7 @@ namespace attr { struct AttrHashFcn { enum { LARGE_PRIME = 32452843ul }; std::size_t operator()(const std::pair& p) const { - return p.first * LARGE_PRIME + p.second->hash(); + return p.first * LARGE_PRIME + p.second->getId(); } }; @@ -57,7 +57,7 @@ struct AttrHashFcn { */ struct AttrHashBoolFcn { std::size_t operator()(NodeValue* nv) const { - return nv->hash(); + return (size_t)nv->getId(); } }; -- cgit v1.2.3