Re: Proper way to raise awareness of a bug

2024-10-29 Thread Mike Parker via Digitalmars-d-learn
On Tuesday, 29 October 2024 at 16:59:48 UTC, Chris Piker wrote: Hi D There is a bug listed in the Bugzilla tracking tool that affected me the other day, [15526](https://issues.dlang.org/show_bug.cgi?id=15526). It's not a big problem, just an unexpected issue and seems easy to fix... by some

Re: Proper way to raise awareness of a bug

2024-10-29 Thread Chris Piker via Digitalmars-d-learn
On Tuesday, 29 October 2024 at 19:18:05 UTC, H. S. Teoh wrote: // This should do the job. Put it in a function if you need it // frequently. myInput.byChars.filter!(ch => ch != '_').to!int That's similar to the workaround I used, but yours uses a lazy range so it's nice

Re: Proper way to raise awareness of a bug

2024-10-29 Thread H. S. Teoh via Digitalmars-d-learn
On Tue, Oct 29, 2024 at 04:59:48PM +, Chris Piker via Digitalmars-d-learn wrote: > Hi D > > There is a bug listed in the Bugzilla tracking tool that affected me > the other day, > [15526](https://issues.dlang.org/show_bug.cgi?id=15526). It's not a > big problem, just an unexpected issue and

Re: Proper way to raise awareness of a bug

2024-10-29 Thread Richard (Rikki) Andrew Cattermole via Digitalmars-d-learn
On 30/10/2024 5:59 AM, Chris Piker wrote: What is the etiquette around Bugzilla usage in the community? Would it be appropriate or inappropriate to get an account on issues.dlang.org just to post a comment on a bug stating that it affect my code. If there is one other person stating just this,

Re: Proper way to raise awareness of a bug

2024-10-29 Thread monkyyy via Digitalmars-d-learn
On Tuesday, 29 October 2024 at 16:59:48 UTC, Chris Piker wrote: Hi D There is a bug listed in the Bugzilla tracking tool that affected me the other day, [15526](https://issues.dlang.org/show_bug.cgi?id=15526). It's not a big problem, just an unexpected issue and seems easy to fix... by some