Re: There are some Feed RSS or mail alert for new Dlang compiler update?

2021-06-12 Thread jfondren via Digitalmars-d-learn
On Sunday, 13 June 2021 at 01:58:41 UTC, Mike Parker wrote: On Saturday, 12 June 2021 at 21:20:23 UTC, Marcone wrote: Becouse I can not find it. Your best bet is to subscribe to the announce mailing list: http://lists.puremagic.com/cgi-bin/mailman/listinfo/digitalmars-d-announce Martin

Re: There are some Feed RSS or mail alert for new Dlang compiler update?

2021-06-12 Thread Mike Parker via Digitalmars-d-learn
On Saturday, 12 June 2021 at 21:42:27 UTC, jfondren wrote: On Saturday, 12 June 2021 at 21:20:23 UTC, Marcone wrote: Becouse I can not find it. https://dlang.org/blog/category/dmd-releases/rss takes you to https://feeds.feedburner.com/OfficialDBlog which includes everything, but still has

Re: There are some Feed RSS or mail alert for new Dlang compiler update?

2021-06-12 Thread Mike Parker via Digitalmars-d-learn
On Saturday, 12 June 2021 at 21:20:23 UTC, Marcone wrote: Becouse I can not find it. Your best bet is to subscribe to the announce mailing list: http://lists.puremagic.com/cgi-bin/mailman/listinfo/digitalmars-d-announce Martin announces every compiler release using the title "Release D

Re: Wrote a Protobuf-like D (de)serialisation library - asking for comments / suggestions

2021-06-12 Thread Ali Çehreli via Digitalmars-d-learn
On 6/12/21 2:59 PM, Sinisa Susnjar wrote: > instead uses the meta programming facilities of D to (de)serialise D data types from/to binary messages. Yeah! :) I did the same at work. > (I am sure there is a lot of room for improvement) Without reading your code carefully, I can think of two

Wrote a Protobuf-like D (de)serialisation library - asking for comments / suggestions

2021-06-12 Thread Sinisa Susnjar via Digitalmars-d-learn
Hi, D newbie here, The library is on par with Google Protobuf performance-wise and does not need a pre-compiler like Protobuf does, but instead uses the meta programming facilities of D to (de)serialise D data types from/to binary messages. Some samples and unit tests are included. Here's

Re: There are some Feed RSS or mail alert for new Dlang compiler update?

2021-06-12 Thread jfondren via Digitalmars-d-learn
On Saturday, 12 June 2021 at 21:20:23 UTC, Marcone wrote: Becouse I can not find it. https://dlang.org/blog/category/dmd-releases/rss takes you to https://feeds.feedburner.com/OfficialDBlog which includes everything, but still has `` to look for.

There are some Feed RSS or mail alert for new Dlang compiler update?

2021-06-12 Thread Marcone via Digitalmars-d-learn
Becouse I can not find it.

Re: Creating a static library

2021-06-12 Thread dokutoku via Digitalmars-d-learn
On Friday, 11 June 2021 at 10:40:27 UTC, Mike Brown wrote: https://dlang.org/articles/dll-linux.html mentions the GC and linking requirements. I am happy to not use the GC for this library, what is the best way to turn this off for the entire library? I think you can add the betterC flag

Re: Problem with Exceptions in Constructor

2021-06-12 Thread Mike Brown via Digitalmars-d-learn
On Saturday, 12 June 2021 at 02:19:21 UTC, Mike Parker wrote: On Friday, 11 June 2021 at 20:09:22 UTC, Mike Brown wrote: The error is flagged on the writeln(e.msg). Do I need to do something special to pass a string to an exception? dup? No, that code is fine. You're passing a string

Re: Unittests not firing?

2021-06-12 Thread Mike Brown via Digitalmars-d-learn
On Friday, 11 June 2021 at 21:10:32 UTC, H. S. Teoh wrote: On Fri, Jun 11, 2021 at 02:05:31PM -0700, H. S. Teoh wrote: [...] Huh, that doesn't look right. This was fixed since June last year, so it *should* have made it into the latest compiler releases already. Unless this one was missed