Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFNodeExpression.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFNodeExpression.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFNodeExpression.java
index 474daadb9..a9efeecda 100644
--- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFNodeExpression.java
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFNodeExpression.java
@@ -500,6 +500,7 @@ public class TCFNodeExpression extends TCFNode implements IElementEditor, ICastT
if (type.getSize() != 1) return false;
if (type.getProperties().get(ISymbols.PROP_BINARY_SCALE) != null) return false;
if (type.getProperties().get(ISymbols.PROP_DECIMAL_SCALE) != null) return false;
+ if (type.getFlag(ISymbols.SYM_FLAG_ARTIFICIAL)) return false;
String id = type.getTypeID();
if (id == null || id.equals(type.getID())) break;
TCFDataCache<ISymbols.Symbol> type_cache = model.getSymbolInfoCache(id);

Back to the top