Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

using ingroup and anchor causes tests to disappear #6594

Closed
calumblair opened this issue Nov 2, 2018 · 4 comments
Closed

using ingroup and anchor causes tests to disappear #6594

calumblair opened this issue Nov 2, 2018 · 4 comments
Labels

Comments

@calumblair
Copy link

test_anchor_ingroup_bug.zip
MWE attached.
header file:

/**
* \defgroup group1 Group 1
*/

/** \ingroup group1 
(using addtogroup here fixes the problem)
*/
int f(int);

code file:

/**
\test f() should have behaviour 1
\anchor anchor_1
\test f() should have behaviour 2
*/
int f(int)
{
	return 0;
}

Observed behaviour in the test list:

Member f (int)

    f() should have behaviour 1 

Expected behaviour:

Member f (int)

    f() should have behaviour 1 
    f() should have behaviour 2

I think this is specific to ingroup - If I use addtogroup the bug does not appear.
This is present in 1.8.14 and master.

@calumblair
Copy link
Author

Correction: If I use addtogroup, weakgroup etc. I see similar behaviour on more complex examples.

@albert-github
Copy link
Collaborator

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

@albert-github
Copy link
Collaborator

Code has been integrated in master on github.

@albert-github albert-github added the fixed but not released Bug is fixed in github, but still needs to make its way to an official release label Nov 4, 2018
@doxygen
Copy link
Owner

doxygen commented Dec 27, 2018

This issue was previously marked 'fixed but not released',
which means it should be fixed in doxygen version 1.8.15.
Please verify if this is indeed the case. Reopen the
issue if you think it is not fixed and please include any additional information
that you think can be relevant (preferably in the form of a self-contained example).

@doxygen doxygen removed the fixed but not released Bug is fixed in github, but still needs to make its way to an official release label Dec 27, 2018
@doxygen doxygen closed this as completed Dec 27, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants