Samael
Samael
I wasn't aware that they are meant to be generated by the compiler. I just thought of them as the D equivalent of a header file.
if this gets done please please also generate a `.gitignore` with at least: ``` # only dub.json or dub.sdl should be under source control .dub dub.selections.* __test__library__ # Ignore code...
See PR #56 for changes
This should ideally be controlled via an `.editorconfig` file in the project root
that part of the code is one big string. there's no concatenation taking place. Seems like a problem with dmd.
line 291 of terminal.d has `` as part of the string text: ``` :ac=``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~: ``` So it's doing a concatenation there, hence the warning with dmd 2.072. This is actually...
I guess this is still a problem: ``` Compiling mysqlclient-sys v0.2.3 Running `rustc --crate-name mysqlclient_sys C:\Users\singingbush\.cargo\registry\src\github.com-1ecc6299db9ec823\mysqlclient-sys-0.2.3\src\lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=14ffe003dec73a57 -C extra-filename=-14ffe003dec73a57 --out-dir C:\projects\rwp\target\debug\deps -L dependency=C:\projects\rwp\target\debug\deps --cap-lints...
This is now blocked on https://github.com/ColdenCullen/doveralls/issues/22
I thought I had updated this issue. I have got ManyToOne working, just not as expected. It wasn't clear from the documentation that I had to do: ``` D Query...
I added a test for it in `hdtest/source/htestmain.d` in [this commit](https://github.com/buggins/hibernated/commit/e218b45953ccc46b48c8e005434f9e881357e5d9) to ensure it keeps working as-is: ``` D writeln("Test retrieving users by group... (ManyToOne relationship)"); auto qUsersByGroup = sess.createQuery("FROM...