1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-13 03:55:22 +02:00

Propagating bug fixes to branch.

This commit is contained in:
Hoda Amer 2004-07-06 17:32:45 +00:00
parent aa79b7dfa8
commit b04b89db82
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-07-05 Hoda Amer
Patch for Keith Campbell, a small fix in CConventions.

View file

@ -188,6 +188,9 @@ public class ASTUtil {
if(po == ASTPointerOperator.VOLATILE_POINTER)
pointerString =("* volatile"); //$NON-NLS-1$
if(po == ASTPointerOperator.RESTRICT_POINTER)
pointerString =("* restrict"); //$NON-NLS-1$
return pointerString;
}