albert-github

Results 1742 comments of albert-github

smells bit like a buffer underflow / overflow or something similar. Quite strange. I did a sequence of 6 times ``` rm -rf html doxygen -v doxygen -d preprocessor ```...

Indeed the contrived example works now (example 1 from the standard), example 2 looks OK as well though example 3 still has some problems: ``` /// \file #define F(...) f(0...

The 3rd example looks OK except for `H1` (line 19) as I don't see a warning at all. When running `gcc -E ee.h` I see the warning: ``` ee.h:19:33: error:...

@doxygen I partly agree with the statement in https://github.com/doxygen/doxygen/issues/11849#issuecomment-3507837170 but when having: ``` #define A(x,y) x##y #define B(x,y) x#y #define A1(x,y) ##x##y #define B1(x,y) #x#y #define A2(x,y) x##y## #define B2(x,y)...

Thanks, but unfortunately there are a few other (end) cornercases. ``` // #define H1(X, ...) X __VA_OPT__(##) __VA_ARGS__ #define A(x,y,...) __VA_OPT__(x##y) __VA_ARGS__ #define B(x,y,...) __VA_OPT__(x#y) __VA_ARGS__ #define A1(x,y,...) __VA_OPT__(##x##y) __VA_ARGS__...

I've just pushed a proposed patch, pull request #11848

Code has been integrated in master on GitHub (please don't close the issue as this will be done at the moment of an official release).

Sometimes it is a bit hard to find the relevant artifact as multiple runs have to be done till GitHub Action provides all the artifacts (and unfortunately they are scattered...

These are known problems. The releases are build against static libraries and these are not directly available (to my knowledge) for GitHub Actions. So a dynamic link is performed for...

What happens with the current doxygen 1.13.2 version? To be able to reproduce the issue it issue it is essential to have an example that reproduces the problem, so: -...