On Tue, Dec 11, 2012 at 02:44:41PM -0800, Lawrence Crowl wrote:
> +/* Hash a tree in a uid_decl_map. */
> +
> +inline hashval_t
> +uid_decl_hasher::hash (const value_type *item)
> +{
> + return item->decl_minimal.uid;
Ugh, why aren't you using DECL_UID here? The fact that DECL_UID is right
now defined to (DECL_MINIMAL_CHECK (NODE)->decl_minimal.uid) might change,
we really don't want to update thousands of locations should we need to
change that.
Jakub
