mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 06:05:24 +02:00
Bug 395243. Fall back to the simplified type if the original type of a
template argument could not be stored in the index.
This commit is contained in:
parent
fb5f1bd39d
commit
f9498e093a
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ public final class TypeMarshalBuffer implements ITypeMarshalBuffer {
|
|||
fPos--;
|
||||
IType type = unmarshalType();
|
||||
IType originalType = unmarshalType();
|
||||
if (originalType == null)
|
||||
if (originalType == null || originalType == UNSTORABLE_TYPE_PROBLEM)
|
||||
originalType= type;
|
||||
return new CPPTemplateTypeArgument(type, originalType);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue