mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
Minor fix for implicit constructors.
This commit is contained in:
parent
8e12e974ec
commit
5f1227d142
1 changed files with 1 additions and 1 deletions
|
@ -2801,7 +2801,7 @@ public class CPPSemantics {
|
|||
return null;
|
||||
IType type;
|
||||
try {
|
||||
type = SemanticUtil.getSimplifiedType(((ICPPVariable) binding).getType());
|
||||
type = SemanticUtil.getNestedType(((ICPPVariable) binding).getType(), TDEF | CVTYPE);
|
||||
if (!(type instanceof ICPPClassType))
|
||||
return null;
|
||||
ICPPClassType classType = (ICPPClassType) type;
|
||||
|
|
Loading…
Add table
Reference in a new issue