Andrey Penechko
Andrey Penechko
Not surprizing behaviour at all. It is described here https://dlang.org/spec/enum.html#named_enums at point 17.1.5 *A named enum member can be implicitly cast to its EnumBaseType, but EnumBaseType types cannot be implicitly...
I've seen https://issues.dlang.org/show_bug.cgi?id=21849, but https://issues.dlang.org/show_bug.cgi?id=21851 is about column numbers. My issue is about cursor alignment when tabs occur. Tabs are not multibyte chars, they are wide char and have variable...
What tab size should we use for that? Should I print to stderr while processing or write to some buffer and then print? Replacing tabs with spaces also must adjust...
`verrorPrint` already prints multiple times to `stderr`. While printing everything to a buffer first is a good idea, there is coloring involved, which lives in the `Console` object. Ideally coloring...
Thanks for suggestion! Can you go into more detail about what features would be needed for Vox to support OS dev? I suppose this mainly involves custom/customizable executable output, inline...
The text mentions `unit` several times, but never says what it is.
This happens for me both on linux and windows, both 2.072 and 2.071. Only in release mode.
I compiled it myself `"C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\vcvars32.bat" && cl /O2 /Isqlite3.h /D_USRDLL /D_WINDLL sqlite3.c /LD /Fesqlite3.dll /link` then `coffimplib.exe sqlite3.lib -f` and used resulting .lib and .dll...