mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 20:15:22 +02:00
Propagating bug fixes to branch.
This commit is contained in:
parent
aa79b7dfa8
commit
b04b89db82
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
2004-07-06 Hoda Amer
|
||||||
|
Fix for PR 68933 : [Content Assist] removes asterisks from parameter prompt
|
||||||
|
|
||||||
2004-07-05 Hoda Amer
|
2004-07-05 Hoda Amer
|
||||||
Patch for Keith Campbell, a small fix in CConventions.
|
Patch for Keith Campbell, a small fix in CConventions.
|
||||||
|
|
||||||
|
|
|
@ -188,6 +188,9 @@ public class ASTUtil {
|
||||||
if(po == ASTPointerOperator.VOLATILE_POINTER)
|
if(po == ASTPointerOperator.VOLATILE_POINTER)
|
||||||
pointerString =("* volatile"); //$NON-NLS-1$
|
pointerString =("* volatile"); //$NON-NLS-1$
|
||||||
|
|
||||||
|
if(po == ASTPointerOperator.RESTRICT_POINTER)
|
||||||
|
pointerString =("* restrict"); //$NON-NLS-1$
|
||||||
|
|
||||||
return pointerString;
|
return pointerString;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue