Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Group namespaces?

I was not able to figure that out from the preferences description either. Perhaprs wording can be improved?

Andrew

On Wed, Jan 13, 2010 at 2:31 AM, Leherbauer, Anton (Toni) <Anton.Leherbauer@xxxxxxxxxxxxx> wrote:

The namespace grouping collapses multiple namespace declarations into
one, eg.

namespace std3 {
      int a;
      int b;
}

// ...

namespace std3 {
      int c;
      int d;
}

would be grouped into one namespace node "std3" instead of two separate
nodes.

Toni


> -----Original Message-----
> From: cdt-dev-bounces@xxxxxxxxxxx
> [mailto:cdt-dev-bounces@xxxxxxxxxxx] On Behalf Of Marc-Andre Laperle
> Sent: Wednesday, January 13, 2010 3:49 AM
> To: CDT General developers list.
> Subject: [cdt-dev] Group namespaces?
>
> Hi,
>
> I'm working on a patch to add Group actions (member,
> namespaces, macros)
> in the Outline view and when I try the setting C/C++ > Appearance,
> "Group namespaces definitions in the Outline view", I can't see any
> difference when selected or not. For example,
>
> namespace std3 {
>       int a;
>       int b;
> }
>
> "a" and "b" are always grouped in std3 and
>
> using namespace std;
> using namespace std2;
>
> are never grouped in the Outline view. Am I missing something
> or is this
> a bug I should open?
>
> Thanks!
>
> Marc-andre
> _______________________________________________
> cdt-dev mailing list
> cdt-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/cdt-dev
>
_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev


Back to the top