1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug Fixing

This commit is contained in:
Hoda Amer 2004-07-06 17:29:23 +00:00
parent 2751430a16
commit 7d99be71a5
2 changed files with 6 additions and 0 deletions

View file

@ -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

View file

@ -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;
} }