summaryrefslogtreecommitdiffstats
path: root/src/classdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-08-03 19:17:37 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-08-03 19:17:37 (GMT)
commit6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31 (patch)
treed54a211783205791dc3ce2ad8349f9fd7d1bce20 /src/classdef.cpp
parente913d55b2e5a8e37ebd1ffd8fec730886a45fbda (diff)
downloadDoxygen-6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31.zip
Doxygen-6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31.tar.gz
Doxygen-6f0269ef3074bbc4bc16ad63a0e0a8f9b5f0ce31.tar.bz2
Bug 734077 - no uniquely matching class member found for inline function definition where parameter argument names don't match
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r--src/classdef.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index cef4720..522a53c 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -4364,6 +4364,11 @@ bool ClassDef::isPublished() const
return m_impl->spec&Entry::Published;
}
+bool ClassDef::isForwardDeclared() const
+{
+ return m_impl->spec&Entry::ForwardDecl;
+}
+
bool ClassDef::isObjectiveC() const
{
return getLanguage()==SrcLangExt_ObjC;