diff options
author | albert-github <albert.tests@gmail.com> | 2020-02-20 13:16:26 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-02-20 13:16:26 (GMT) |
commit | 00b45f73c67f5c57407e6e2a783af7f0820afa4d (patch) | |
tree | 2e38e4aeeaf474e7bafa5d4ca95b93eb95f72847 /vhdlparser | |
parent | 597d113d52a25d5185c8fb1c1d3d3d7b8f1f4a90 (diff) | |
download | Doxygen-00b45f73c67f5c57407e6e2a783af7f0820afa4d.zip Doxygen-00b45f73c67f5c57407e6e2a783af7f0820afa4d.tar.gz Doxygen-00b45f73c67f5c57407e6e2a783af7f0820afa4d.tar.bz2 |
Problem in case using PREDEFINED with comma
In the pull request "Enable comma as separator in configuration lists enhancement " (#6563) it was made possible to have commas as separators for lists.
In case we have:
```
PREDEFINED = A(x,y)=sin(x),cos(y)
```
and use `doxygen -x` (or usethe define): this results in:
```
PREDEFINED = A(x \
y)=sin(x) \
cos(y)
```
this can be overcome by means of:
```
PREDEFINED = "A(x,y)=sin(x),cos(y)"
```
But for a lot of existing packages this poses a problem.
(Found by looking at the doxygen configuration files as used by Fossies).
Diffstat (limited to 'vhdlparser')
0 files changed, 0 insertions, 0 deletions