1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Fix compilation error.

This commit is contained in:
Marc-Andre Laperle 2013-10-28 22:17:43 -04:00
parent a7321b3293
commit e911482b4e

View file

@ -14,7 +14,6 @@ package org.eclipse.cdt.internal.core.index;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTPreprocessorStatement;
import org.eclipse.cdt.core.index.IIndexExtension;
import org.eclipse.cdt.core.index.IIndexFileLocation;
import org.eclipse.cdt.core.parser.ISignificantMacros;
import org.eclipse.cdt.internal.core.pdom.ASTFilePathResolver;
@ -26,7 +25,7 @@ public class WritableCIndex extends CIndex implements IWritableIndex {
private Object fThread;
public WritableCIndex(IWritableIndexFragment writable) {
super(new IWritableIndexFragment[] { writable }, IIndexExtension.EMPTY_ARRAY);
super(new IWritableIndexFragment[] { writable });
}
@Override