mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for 101711 : Dependency Tests failing on Linux
This commit is contained in:
parent
e5baf66734
commit
9688b97f43
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public class IncludePattern extends CSearchPattern {
|
|||
* @see org.eclipse.cdt.internal.core.search.matching.CSearchPattern#decodeIndexEntry(org.eclipse.cdt.internal.core.index.IEntryResult)
|
||||
*/
|
||||
protected void decodeIndexEntry(IEntryResult entryResult) {
|
||||
this.decodedSimpleName = entryResult.extractSimpleName().toCharArray();
|
||||
this.decodedSimpleName = entryResult.getName().toCharArray();//entryResult.extractSimpleName().toCharArray();
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
|
|
Loading…
Add table
Reference in a new issue