Steven Schveighoffer

Results 100 issues of Steven Schveighoffer

I'm not sure what the problem is, but whenever I build with -release mode, and use `ae` as a dependency, it's failing to link with a slew of symbols in...

A postgres Interval type cannot be mapped to a Duration, because it has a "months" field. But all time math on DateTime involves Duration. There should at least be a...

Starting in 2.099.0, it's not possible to have a `std.container.Array` of a class that is marked `shared`. Bug report is here: https://issues.dlang.org/show_bug.cgi?id=23140 It looks like the last release of this...

* **Version**: v1.x * **Platform**: N/A I am just starting to use libuv, and was perplexed that there isn't a function to read from a file descriptor without seeking in...

**Is your feature request related to a problem? Please describe.** My app that uses YPImagePicker is used to take pictures of things used in auditing. In many cases, the pictures...

enhancement
Not now

I removed everything I could think of: ```console % cat testit.d extern(C) void main() {} % ldc2 -betterC testit.d % ./testit % ldc2 -betterC -g testit.d ld: warning: pointer not...

By defining VibeNoDeprecatedEnums, the HTTPStatus enum will not have any deprecated members, and deprecations due to trying to format such an enum variable will not spew pages of deprecation spam....

In the latest version, vibe.http.status.HTTPStatus has an entire group of deprecated members. While this makes sense for people who are using them individually, there is a problem that `formatValue` will...

Let's say I have a web interface that has the following routes: /widget/:id/ (with int _id as a parameter) /widget/foo If I have those two routes in my web interface,...