Re: gen-package-version v1.0.0

2015-06-28 Thread Nick Sabalausky via Digitalmars-d-announce
On 06/28/2015 01:02 AM, Nick Sabalausky wrote: Update to gen-package-version: https://github.com/Abscissa/gen-package-version gen-package-version v1.0.1: - Fixed: Don't use a broken scriptlike release (v0.9.0), use v0.9.1 instead. In your project's dub.json: -- dependencies:

Re: safeArg v0.9.7

2015-06-28 Thread Nick Sabalausky via Digitalmars-d-announce
safeArg v0.9.7 https://github.com/Abscissa/safeArg/blob/master/CHANGELOG.md - Fixed: Don't use a broken scriptlike release (v0.9.0), use v0.9.1 instead.

Does the compiler check for safe?

2015-06-28 Thread Charles Hixson via Digitalmars-d-announce
I took some code that was annotated safe, and modified it to use a buffer internal to the class, and an offset counter. Some of the routines adjusted the counter. I forgot to remove the safe annotation. It compiled without error. So... 1) The compiler didn't check for safety 2) It counts

Re: Does the compiler check for safe?

2015-06-28 Thread cym13 via Digitalmars-d-announce
On Sunday, 28 June 2015 at 07:49:41 UTC, Charles Hixson wrote: I took some code that was annotated safe, and modified it to use a buffer internal to the class, and an offset counter. Some of the routines adjusted the counter. I forgot to remove the safe annotation. It compiled without