d-musique
d-musique
@microsoft-github-policy-service agree
> Thanks for your PR, please fix the CI pipeline error: For sure yes, I have hopes that the patch will fix this, but I'll be back in a few...
> Can you submit the patch upstream? This is done, cf. https://github.com/skvadrik/re2c/pull/481
The status of the upstream patch is that it's been approved, but not yet merged. It's been established with the software author that the buildable libs are internal-only for the...
It might be interesting to note that `ragel`, a pretty similar utility, does not adopt the `vcpkg-tool` naming scheme.
@BillyONeal If that helps, you can have this helloworld project that relies on re2c to build. https://github.com/d-musique/re2c-example
> I create a heap (mi_heap_new) and allocate memory (mi_heap_malloc) in child thread. Can i call mi_heap_destroy from main thread? Hi, I would like to see this question answered as...
Look here for instance. https://github.com/aiekick/ImGuiFileDialog/blob/a7847af76cd7c7335d33a9ff741a5cbf58471436/ImGuiFileDialog.cpp#L3919 Given that this code uses preprocessor-based string concatenation, replacing it with a dynamic expression fails. This scheme occurs multiple times. I'm not sure, but maybe...
My file `ImGuiFileDialogCustomConfig.h` is similiar to this ``` #include "Utility/I18n.h" #define createDirButtonString "+" #define okButtonString _("OK") #define cancelButtonString _("Cancel") [...] ``` and the macro `_` is defined to `gettext`. Gettext...
There isn't slowness. Texts will always be cached after the first access. It's just implementation detail anyway. This is how state-of-the-art i18n works.