mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug Fixing
This commit is contained in:
parent
2751430a16
commit
7d99be71a5
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-6-29 Alain Magloire
|
2004-6-29 Alain Magloire
|
||||||
|
|
||||||
Extend on the fix by Bogdan PR 67656 and
|
Extend on the fix by Bogdan PR 67656 and
|
||||||
|
|
|
@ -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