mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-06-01 23:21:02 +00:00
There were some warnings generated by Doxygen when compiling. One was from an undocumented parameter for a method in the Properties class. Many others were due to a setting that prevented Doxygen from being able to associate function declarations with their definitions if their parameters used standard library objects.
This commit is contained in:
parent
7ab8d11dbb
commit
00099ebfc5
@ -309,7 +309,7 @@ AUTOLINK_SUPPORT = YES
|
|||||||
# diagrams that involve STL classes more complete and accurate.
|
# diagrams that involve STL classes more complete and accurate.
|
||||||
# The default value is: NO.
|
# The default value is: NO.
|
||||||
|
|
||||||
BUILTIN_STL_SUPPORT = NO
|
BUILTIN_STL_SUPPORT = YES
|
||||||
|
|
||||||
# If you use Microsoft's C++/CLI language, you should set this option to YES to
|
# If you use Microsoft's C++/CLI language, you should set this option to YES to
|
||||||
# enable parsing support.
|
# enable parsing support.
|
||||||
|
@ -125,7 +125,8 @@ namespace properties {
|
|||||||
* Retrieve the value associated with the given key. If no such key exists in these properties,
|
* Retrieve the value associated with the given key. If no such key exists in these properties,
|
||||||
* this method will return the given default value.
|
* this method will return the given default value.
|
||||||
*
|
*
|
||||||
* @param key
|
* @param key the name of the property being searched for
|
||||||
|
* @param defaultValue the default value to return if none is found
|
||||||
* @return the key's associated value, or the given default if no value is set
|
* @return the key's associated value, or the given default if no value is set
|
||||||
*/
|
*/
|
||||||
string Properties::get(const string& key, const string& defaultValue) {
|
string Properties::get(const string& key, const string& defaultValue) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user