mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Remove Doxygen filter that is no longer needed
This commit is contained in:
parent
bd812e58aa
commit
2130dea965
3 changed files with 3 additions and 12 deletions
|
@ -1031,7 +1031,7 @@ IMAGE_PATH =
|
|||
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
|
||||
# properly processed by doxygen.
|
||||
|
||||
INPUT_FILTER = jsdoc-filter.pl
|
||||
INPUT_FILTER =
|
||||
|
||||
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
|
||||
# basis. Doxygen will compare the file name with each pattern and apply the
|
||||
|
|
|
@ -45,8 +45,8 @@ option in the "Wizard" tab of the Doxywizard program.
|
|||
|
||||
## Altering the Doxygen configuration
|
||||
|
||||
Most easily accomplished by using the Doxyfile GUI and using it to write a new `Libraries.Doxyfile` file.
|
||||
Alternatively, you can edit the `Libraries.Doxyfile` file in a text editor.
|
||||
This is most easily accomplished by using the Doxyfile GUI and using it to write a new `Doxyfile` file.
|
||||
Alternatively, you can edit the `Doxyfile` configuration file in a text editor.
|
||||
|
||||
|
||||
## References
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
# Filter out JSDoc comments by transforming them to ordinary comments.
|
||||
# (JSDoc comments are used to generate the user API docs and don't produce suitable results for the C++ docs.)
|
||||
while (<>) {
|
||||
if (m/^\s*\/\*\*jsdoc/) {
|
||||
print "\/*\n";
|
||||
} else {
|
||||
print;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue