7019689: Non-dependent name is found in dependent base class although it should be rejected

Fix hashtable.hpp to qualify non-dependant name with "this"

Reviewed-by: phh, never, poonam
This commit is contained in:
Volker Simonis 2011-02-16 17:12:31 -05:00 committed by Coleen Phillimore
parent 89f51d79cc
commit 5e83438315

View File

@ -276,7 +276,7 @@ public:
}
int index_for(Symbol* name, Handle loader) {
return hash_to_index(compute_hash(name, loader));
return this->hash_to_index(compute_hash(name, loader));
}
};