Author Topic: Defs tool window and nested C++ namespaces.  (Read 183 times)

florihupf

  • Community Member
  • Posts: 54
  • Hero Points: 0
Defs tool window and nested C++ namespaces.
« on: May 02, 2024, 10:34:41 AM »
Hi there,

I just noticed that when I write the following C++ code:

namespace hello {
struct Foo;
}

Foo gets indented in the Defs (proctree.e) tool window.  Yeah! Great!

However, when doing this via:

namespace hello::nest {
struct Foo;
}

I get Foo not indented.

Is this a config error on my end?

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 6884
  • Hero Points: 530
Re: Defs tool window and nested C++ namespaces.
« Reply #1 on: May 02, 2024, 01:45:09 PM »
We will look into this. Not a config error.

florihupf

  • Community Member
  • Posts: 54
  • Hero Points: 0
Re: Defs tool window and nested C++ namespaces.
« Reply #2 on: May 08, 2024, 07:00:38 AM »
Thanks Clark, as always.  This would make the Defs tool much more useful for me.