1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 08:45:44 +02:00

2005-06-29 Alain Magloire

Fix PR 100602
	* mi/org/eclipse/cdt/debug/mi/core/GDBTypeParser.java
This commit is contained in:
Alain Magloire 2005-06-29 16:42:20 +00:00
parent 14a8034c5b
commit 865d770780
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2005-06-29 Alain Magloire
Fix PR 100602
* mi/org/eclipse/cdt/debug/mi/core/GDBTypeParser.java
2005-06-28 Alain Magloire
Fix PR 94612: addr =<PENDING>
* mi/org/eclipse/cdt/debug/mi/core/MIFormat.java

View file

@ -61,6 +61,7 @@ public class GDBTypeParser {
s = new String();
}
s = Pattern.compile("\\bconst\\b").matcher(s).replaceAll(""); //$NON-NLS-1$//$NON-NLS-2$
s = Pattern.compile("\\bvolatile\\b").matcher(s).replaceAll(""); //$NON-NLS-1$//$NON-NLS-2$
s = s.trim();
// Initialize.