Commit 8ae3fb1
committed
Incorrect marking of enum values in source browser
When having a simple example like:
```
/// \file
enum class Enum_cls
{
All_cls
= 0,
Functions_cls,
New_cls
};
enum Enum
{
All
= 0,
Functions,
New
};
```
we see in the source listing (when `EXTRACT_ALL=YES`) that the lines 3, 6, 7, 9, 11, 14, 15 and 17 are (grey) marked instead of the lines 3, 6, 7, 8, 11, 13, 15 and 16.
This has been corrected1 parent 93b11f6 commit 8ae3fb1
1 file changed
Lines changed: 10 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4060 | 4060 | | |
4061 | 4061 | | |
4062 | 4062 | | |
4063 | | - | |
4064 | | - | |
| 4063 | + | |
| 4064 | + | |
| 4065 | + | |
| 4066 | + | |
| 4067 | + | |
| 4068 | + | |
| 4069 | + | |
| 4070 | + | |
| 4071 | + | |
| 4072 | + | |
4065 | 4073 | | |
4066 | 4074 | | |
4067 | 4075 | | |
| |||
0 commit comments