Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Committing fix for bug 204758

Hi,
I am about to commit a fix for
https://bugs.eclipse.org/bugs/show_bug.cgi?id=204758.
 
The issue:
==========
PDOMCParameter differently to PDOMCPPParameter unwinds typedefs before
storing the type of the parameter. This leads to anonymous types being
proposed during content assist.
 
The fix:
========
As a fix I remove the following 2 lines in the constructor of
PDOMCParameter:
   while(type instanceof ITypedef)
      type = ((ITypedef)type).getType();


Markus.


Back to the top