1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Adapted to a change in ASTTypeUtil.

This commit is contained in:
Sergey Prigogin 2008-03-17 02:38:10 +00:00
parent d245dc8fca
commit b1108c8d73

View file

@ -516,7 +516,7 @@ public class IndexUpdateTests extends IndexTestBase {
fIndex.acquireReadLock();
try {
final char[] nchars = name.toCharArray();
final String refType = name + " &";
final String refType = name + "&";
final String constRefType = "const " + refType;
IIndexBinding[] ctors= fIndex.findBindings(new char[][]{nchars, nchars}, IndexFilter.ALL_DECLARED_OR_IMPLICIT, NPM);