mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
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:
parent
89f51d79cc
commit
5e83438315
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue