Vladimír Vondruš
Vladimír Vondruš
What you suggest makes sense, this difference is likely due to the config being originally done through the Doxyfile where the flexibility was severely limited, and when I was making...
I got bitten by this quite a few times myself as well, one of the cases was using `from` as a method name. Adding warnings for names that clash with...
I get what you're saying, but I really feel that when the documentation generator complains, it's too late, and this would best be handled by pybind11 directly. Best for everyone...
Oh, support for that definitely makes sense. I was personally playing with the idea of switching to nanobind as well, unfortunately projects that depend on my library use pybind11 so...
Not really. It'd be one extra indirection, meaning an extra chance for bugs to appear, and as the stubs usually remove all traces of the underlying support library, it'd be...
Seeing ``` 9 X11: The DISPLAY environment variable is missing 10 Could not initialize GLFW ``` in the output, it looks like the application doesn't even manage to start? In...
Hi, this actually seems like a regression in Doxygen 1.9.1 (or possibly other versions around that one). I managed to strip it down to just the following: ```cpp template struct...
Please see #215 -- I personally had to revert back to 1.8.16 because it's far from great. On the m.css side all the workarounds for 1.12 are in place so...
I'm running into the same issue (undefined references to CGL APIs), although with another project. And I suspect it's a CMake / Homebrew issue on Mac, because the same CMake...
Just for the record, for the Bullet Homebrew package itself it was "fixed" by passing `-DCMAKE_FIND_FRAMEWORK=FIRST` to CMake (https://github.com/Homebrew/homebrew-core/pull/189186), and the same was what resolved the problem in my case....