mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Bug Fixing
This commit is contained in:
parent
612551d59c
commit
55cf39aba4
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
|||
2004-06-14 Hoda Amer
|
||||
Fix for PR 63243: [Outline View] Missing user defined type if declare variable along with the C++ elem (struct, enum, union)
|
||||
|
||||
2004-06-11 Alain Magloire
|
||||
|
||||
The IncludeEntry LibraryEntry getFullIncludePath()
|
||||
|
|
|
@ -134,6 +134,12 @@ public class ASTUtil {
|
|||
}else if(typeSpecifier instanceof IASTSimpleTypeSpecifier){
|
||||
IASTSimpleTypeSpecifier simpleSpecifier = (IASTSimpleTypeSpecifier) typeSpecifier;
|
||||
type.append(simpleSpecifier.getTypename());
|
||||
}else if(typeSpecifier instanceof IASTClassSpecifier){
|
||||
IASTClassSpecifier classSpecifier = (IASTClassSpecifier) typeSpecifier;
|
||||
type.append(classSpecifier.getName());
|
||||
}else if(typeSpecifier instanceof IASTEnumerationSpecifier){
|
||||
IASTEnumerationSpecifier enumSpecifier = (IASTEnumerationSpecifier) typeSpecifier;
|
||||
type.append(enumSpecifier.getName());
|
||||
}
|
||||
return type.toString();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue