diff options
author | albert-github <albert.tests@gmail.com> | 2020-11-18 14:35:29 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-11-18 14:35:29 (GMT) |
commit | d2c98cdbc5a66a95fd4a1d68ff21c371d31288a4 (patch) | |
tree | 952a1b5a8b4c22a5447795780d96b3bdb83dc2d5 /testing/snippet_test.cpp | |
parent | fa65bb38f81457d00f9c900bb57eb68bea59b1b4 (diff) | |
download | Doxygen-d2c98cdbc5a66a95fd4a1d68ff21c371d31288a4.zip Doxygen-d2c98cdbc5a66a95fd4a1d68ff21c371d31288a4.tar.gz Doxygen-d2c98cdbc5a66a95fd4a1d68ff21c371d31288a4.tar.bz2 |
Silently ignoring unexpected characters in configuration
When having a doxygen configuration file like:
```
QUIET=YES
@INPUT = file
@UNKNOWN =
@UNKNOWN1
@UNKNOWN 1
@UNK # test
```
we get the warnings
```
warning: ignoring unsupported tag 'UNKNOWN' at line 3, file Doxyfile
warning: ignoring unknown tag 'UNKNOWN1' at line 4, file Doxyfile
warning: ignoring unknown tag 'UNKNOWN' at line 5, file Doxyfile
warning: ignoring unknown tag '1' at line 5, file Doxyfile
warning: ignoring unknown tag 'UNK' at line 6, file Doxyfile
# Difference with default Doxyfile 1.9.0 (fa65bb38f81457d00f9c900bb57eb68bea59b1b4)
QUIET = YES
INPUT = file
```
especially the missing of a warning about the `@` in `@INPUT` can be a bit misleading (it might be that the user wanted to use `@INCLUDE` and and specified `@INPUT`
It would be better to have a warning about a not handled character instead of just ignoring it.
Diffstat (limited to 'testing/snippet_test.cpp')
0 files changed, 0 insertions, 0 deletions