summaryrefslogtreecommitdiffstats
path: root/src/arguments.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-05-03 19:10:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-05-03 19:10:48 (GMT)
commit796d6585be58d1c9112422a919f49d1998dc672c (patch)
tree4ac4f325c5b66221bc5671e4000a00e5383280f6 /src/arguments.cpp
parent7b2d77abb73288bdd48ca04720fd6779e0bf94c2 (diff)
downloadDoxygen-796d6585be58d1c9112422a919f49d1998dc672c.zip
Doxygen-796d6585be58d1c9112422a919f49d1998dc672c.tar.gz
Doxygen-796d6585be58d1c9112422a919f49d1998dc672c.tar.bz2
Bug 746734 - Don't warn about missing documentation for deleted functions.
Diffstat (limited to 'src/arguments.cpp')
-rw-r--r--src/arguments.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arguments.cpp b/src/arguments.cpp
index 87d0438..095aa96 100644
--- a/src/arguments.cpp
+++ b/src/arguments.cpp
@@ -32,6 +32,7 @@ ArgumentList *ArgumentList::deepCopy() const
argList->volatileSpecifier = volatileSpecifier;
argList->pureSpecifier = pureSpecifier;
argList->trailingReturnType = trailingReturnType;
+ argList->isDeleted = isDeleted;
return argList;
}
@@ -61,6 +62,7 @@ ArgumentList *ArgumentList::unmarshal(StorageIntf *s)
result->volatileSpecifier = unmarshalBool(s);
result->pureSpecifier = unmarshalBool(s);
result->trailingReturnType = unmarshalQCString(s);
+ result->isDeleted = unmarshalBool(s);
return result;
}
@@ -93,6 +95,7 @@ void ArgumentList::marshal(StorageIntf *s,ArgumentList *argList)
marshalBool(s,argList->volatileSpecifier);
marshalBool(s,argList->pureSpecifier);
marshalQCString(s,argList->trailingReturnType);
+ marshalBool(s,argList->isDeleted);
}
}