mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Bug 330669: [pretty printers] children of pointer to class with multiple inheritance are corrupted
This commit is contained in:
parent
9f2dc0efc8
commit
859bba1a0d
1 changed files with 1 additions and 1 deletions
|
@ -1596,7 +1596,7 @@ public class MIVariableManager implements ICommandControl {
|
|||
// For pointers, the child expression is already contained in the parent,
|
||||
// so we must simply prefix with *
|
||||
// See Bug219179 for more information.
|
||||
if (isPointer()) {
|
||||
if (!isDynamic() && !exprInfo.hasDynamicAncestor() && isPointer()) {
|
||||
return "*("+parentExp+")"; //$NON-NLS-1$//$NON-NLS-2$
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue