Andrea Fontana
Andrea Fontana
test.h: ```c typedef __builtin_va_list __gnuc_va_list; typedef __gnuc_va_list va_list; ``` test.d: ```d extern (C): alias __gnuc_va_list = __va_list_tag[1]; alias va_list = __va_list_tag[1]; ``` ```test.d``` is missing ```import core.stdc.stdarg;```
I love Dstep. And bindbc too. I wonder if there is any plan to better integrate them. Is it possible to add a flag to dstep to generate output in...
Check: https://github.com/adamdruppe/arsd/blob/master/dom.d#L2069 Adding a `DomElement[string] index;` inside document, and keep it updated on document's parsing / editing, could be improve a lot a search by id, using css selector too....
This page: https://virocore.viromedia.com/docs/3d-objects#section-fbx > FBX is an expansive and flexible 3D model format supported by most 3D authoring software. To load FBX files, use the ViroFBX script to convert the...
Using IntelliJ Idea with Dscanner I get a tip: "Variable foo is never used" ``` void test() { int foo; { foo = 1; } } ```
This library create a webview using webkit: https://github.com/zserge/webview It's pretty easy to use from D. Can be used as frontend with a spasm backend?
t.h: ```c #include uint32_t test; ``` t.dpp: ```c #include "t.h" void main() { } ``` ```> d++ t.dpp``` output: ``` Error: Error parsing '/tmp/libclangYrt380': ./t.h:3:1: error: unknown type name 'uint32_t'...
Dpp gives just a few error, related to std library apparently. It seems that operator""s issue is still there ( related: https://github.com/atilaneves/dpp/issues/101 ) ``` Untranslatable cursor Cursor(ClassTemplatePartialSpecialization, "numeric_limits", Type(Unexposed, "numeric_limits"))...
```c++ class A { bool operator_a() const; }; ```
Every now and then, the underlying dcd crashes. I have to restart vscode to bring it up again. It would be useful to add a polling to check if dcd...