Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Nested types in the debugger

Dishaw__Jim
Beginner
448 Views
If one has a nested, e.g.
TYPE FOO
   INTEGER :: foo1
END TYPE FOO

TYPE BAR
   TYPE(FOO) :: foolish
END TYPE BAR

TYPE(BAR) :: baz
it appears in the watch window in the Visual Studio debugger as
-baz
   - baz%foolish
      - baz%foolish%foo1
it would be nice if there was some way to get it to display as
-baz
   - foolish
      - foo1
Is there anyway to do it?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
448 Views
No, but feel free to file a feature request for it at Intel Premier Support. I don't know if the debugger infrastructure would allow something like that, but it doesn't hurt to ask.
0 Kudos
Reply