diff options
author | albert-github <albert.tests@gmail.com> | 2020-04-26 07:22:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-26 07:22:50 (GMT) |
commit | d52e170500d1f532b8c45fcf5947d4d1e805febb (patch) | |
tree | 40d680f8f4ea37bb3ab1bb1e5cee4fea75be47f4 /src/xmlcode.h | |
parent | 869f979013dab134ff5292fec21c7610516d514d (diff) | |
download | Doxygen-d52e170500d1f532b8c45fcf5947d4d1e805febb.zip Doxygen-d52e170500d1f532b8c45fcf5947d4d1e805febb.tar.gz Doxygen-d52e170500d1f532b8c45fcf5947d4d1e805febb.tar.bz2 |
Inconsistent behavior between `///` and `//!` for formulas (#7726)
When we have code like:
```
//!
//! \f$a \times
//! c \f$
//!
```
this will throw a warning like:
```
warning: End of comment block while inside formula.
```
due to the fact that after the comment conversion the code is like:
```
/**
* \f$a \times
//! c \f$
* */
```
Comparing to the `///` comments:
```
///
/// \f$a \times
/// c \f$
///
```
we get
```
/**
* \f$a \times
c \f$
* */
```
This discrepancy has been removed.
Diffstat (limited to 'src/xmlcode.h')
0 files changed, 0 insertions, 0 deletions