diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-09-17 20:59:20 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-09-17 20:59:20 +0000 |
commit | 92ee5ad826f567536c3d0a235ab6eeee919a30ab (patch) | |
tree | 6b68e4559e250cab1c20283499ebc5c39dc1a2e6 /LUFA | |
parent | a032d77d0e8009a3ef7e1666f144cde6f08f800e (diff) | |
download | lufa-92ee5ad826f567536c3d0a235ab6eeee919a30ab.tar.gz lufa-92ee5ad826f567536c3d0a235ab6eeee919a30ab.tar.bz2 lufa-92ee5ad826f567536c3d0a235ab6eeee919a30ab.zip |
Enable strict prototype matching in the library Doxygen configuration file, to ensure all documentation references are as correct as possible.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Doxygen.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Doxygen.conf b/LUFA/Doxygen.conf index 362e4c6b4..5b1cb4905 100644 --- a/LUFA/Doxygen.conf +++ b/LUFA/Doxygen.conf @@ -291,7 +291,7 @@ SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter and setter methods for a property. Setting this option to YES (the default) will make doxygen replace the get and set methods by a property in the documentation. This will only work if the methods are indeed getting or setting a simple type. If this is not the case, or you want to show the methods anyway, you should set this option to NO. -IDL_PROPERTY_SUPPORT = YES +IDL_PROPERTY_SUPPORT = NO # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first @@ -522,7 +522,7 @@ SORT_BY_SCOPE_NAME = NO # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. -STRICT_PROTO_MATCHING = NO +STRICT_PROTO_MATCHING = YES # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo @@ -561,7 +561,7 @@ ENABLED_SECTIONS = # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. -MAX_INITIALIZER_LINES = 15 +MAX_INITIALIZER_LINES = 1 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the |