mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
*** empty log message ***
This commit is contained in:
parent
b4926ba45a
commit
c783685b39
2 changed files with 2 additions and 5 deletions
|
@ -33,7 +33,7 @@ public abstract class IndexerJob2 implements IIndexJob {
|
|||
protected IIndex fProjectIndex = null;
|
||||
protected ICDTIndexer fSourceIndexer = null;
|
||||
|
||||
public static final String FAMILY= "BasicTypeIndexerJob"; //$NON-NLS-1$
|
||||
public static final String FAMILY= "IndexerJob2"; //$NON-NLS-1$
|
||||
|
||||
public IndexerJob2(IndexManager indexManager, IProject project) {
|
||||
fProject = project;
|
||||
|
|
|
@ -167,10 +167,7 @@ public class IndexerTypesJob2 extends IndexerJob2 {
|
|||
offsetType = offsetType / 10;
|
||||
m *= 10;
|
||||
}
|
||||
int mod = 1;
|
||||
while( offset / ( mod * 10 )> 0 )
|
||||
mod *= 10;
|
||||
int value = offset % mod;
|
||||
int value = offset - ( offsetType * m );
|
||||
// int value = Integer.valueOf(String.valueOf(offset).substring(1)).intValue();
|
||||
|
||||
TypeReference typeReference = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue