diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2017-12-25 13:18:20 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2017-12-25 13:18:20 (GMT) |
commit | 2fe7bc7f1df9a2483355b0743b5e0455aaccc969 (patch) | |
tree | a98f8af195e253a657024687f84b77e2bcc623ef /src/doxygen.cpp | |
parent | 137b2e8dd03a98e692c2f6d813b47f19f2c64e5b (diff) | |
download | Doxygen-2fe7bc7f1df9a2483355b0743b5e0455aaccc969.zip Doxygen-2fe7bc7f1df9a2483355b0743b5e0455aaccc969.tar.gz Doxygen-2fe7bc7f1df9a2483355b0743b5e0455aaccc969.tar.bz2 |
Bug 729237 - (UnFriendlyTemplate) Spurious warning when documenting friend template
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index f9fde4c..00826d6 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -5594,6 +5594,7 @@ static bool findGlobalMember(EntryNav *rootNav, if (root->type!="friend class" && root->type!="friend struct" && root->type!="friend union" && + root->type!="friend" && (!Config_getBool(TYPEDEF_HIDES_STRUCT) || root->type.find("typedef ")==-1) ) |