summaryrefslogtreecommitdiffstats
path: root/src/filedef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-06-28 19:57:14 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-06-28 19:57:14 (GMT)
commitff5ebce0649b5e1fbef2660234f5cc8184e80148 (patch)
tree63487b226b3e3b92355d670fbec5ea7382fc9475 /src/filedef.h
parentd0f24b762e23b1b0c069209978aa403acc027cdf (diff)
downloadDoxygen-ff5ebce0649b5e1fbef2660234f5cc8184e80148.zip
Doxygen-ff5ebce0649b5e1fbef2660234f5cc8184e80148.tar.gz
Doxygen-ff5ebce0649b5e1fbef2660234f5cc8184e80148.tar.bz2
Refactor: make preprocessor run in parallel
And at the same time make sure it gives the same results as when processed using a single thread.
Diffstat (limited to 'src/filedef.h')
-rw-r--r--src/filedef.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/filedef.h b/src/filedef.h
index 2510d85..c03e7ef 100644
--- a/src/filedef.h
+++ b/src/filedef.h
@@ -44,13 +44,12 @@ class FTextStream;
/** Class representing the data associated with a \#include statement. */
struct IncludeInfo
{
- IncludeInfo() : fileDef(0), local(FALSE), imported(FALSE), indirect(FALSE) {}
+ IncludeInfo() : fileDef(0), local(FALSE), imported(FALSE) {}
~IncludeInfo() {}
FileDef *fileDef;
QCString includeName;
bool local;
bool imported;
- bool indirect;
};
/** A model of a file symbol.
@@ -170,7 +169,7 @@ class FileDef : virtual public Definition
virtual bool generateSourceFile() const = 0;
virtual void sortMemberLists() = 0;
- virtual void addIncludeDependency(FileDef *fd,const char *incName,bool local,bool imported,bool indirect) = 0;
+ virtual void addIncludeDependency(FileDef *fd,const char *incName,bool local,bool imported) = 0;
virtual void addIncludedByDependency(FileDef *fd,const char *incName,bool local,bool imported) = 0;
virtual void addMembersToMemberGroup() = 0;