Re: Deprecation: Symbol std.traits.EnumMembers(E) if (is(E == enum)) is not visible from module enumeration because it is privately imported in module range

2018-02-27 Thread Basile B. via Digitalmars-d-debugger
On Tuesday, 27 February 2018 at 16:08:02 UTC, Marc wrote: On Tuesday, 27 February 2018 at 16:07:06 UTC, Marc wrote: How do I remove this warning? I got this after the update to v2.079.0-beta.2 this is the line of warning import std.range : EnumMembers; enum countOfMembers(E) =

Re: program compiled with -g flag give no debugging symbols found on gdb.

2018-02-27 Thread Basile B. via Digitalmars-d-debugger
On Tuesday, 27 February 2018 at 18:20:33 UTC, Marc wrote: What am I missing? I compiled na application with -g flag but when I do: gdb --args myapp.exe foo I get: Reading symbols from myapp.exe...(no debugging symbols found)...done. What am I missing? because for Windows no DWARF2

program compiled with -g flag give no debugging symbols found on gdb.

2018-02-27 Thread Marc via Digitalmars-d-debugger
What am I missing? I compiled na application with -g flag but when I do: gdb --args myapp.exe foo I get: Reading symbols from myapp.exe...(no debugging symbols found)...done. What am I missing?

Re: Deprecation: Symbol std.traits.EnumMembers(E) if (is(E == enum)) is not visible from module enumeration because it is privately imported in module range

2018-02-27 Thread Marc via Digitalmars-d-debugger
I just realized I posted on wrong area. Sorry guys. I can't move this to the learn area, right?

Deprecation: Symbol std.traits.EnumMembers(E) if (is(E == enum)) is not visible from module enumeration because it is privately imported in module range

2018-02-27 Thread Marc via Digitalmars-d-debugger
How do I remove this warning? I got this after the update to v2.079.0-beta.2

Re: Deprecation: Symbol std.traits.EnumMembers(E) if (is(E == enum)) is not visible from module enumeration because it is privately imported in module range

2018-02-27 Thread Marc via Digitalmars-d-debugger
On Tuesday, 27 February 2018 at 16:07:06 UTC, Marc wrote: How do I remove this warning? I got this after the update to v2.079.0-beta.2 this is the line of warning import std.range : EnumMembers; enum countOfMembers(E) = EnumMembers!E.length;