diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-23 11:10:19 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-23 11:10:19 (GMT) |
commit | f1c96033bcea28e3ff4528299459b39488831669 (patch) | |
tree | ca622f0943a627101c1445a9e5c3f66db42350c9 /src/classdef.cpp | |
parent | b4b4c9decfacdf77d58490fa2dd81e1e10fe2dd0 (diff) | |
download | Doxygen-f1c96033bcea28e3ff4528299459b39488831669.zip Doxygen-f1c96033bcea28e3ff4528299459b39488831669.tar.gz Doxygen-f1c96033bcea28e3ff4528299459b39488831669.tar.bz2 |
Bug 739209 - Invalid warning about undocumented C++ function imported from tagfile
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index e6b9064..5c42f57 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -2673,7 +2673,7 @@ bool ClassDef::isLinkable() const } else { - return isLinkableInProject() || isReference(); + return isReference() || isLinkableInProject(); } } |