summaryrefslogtreecommitdiffstats
path: root/src/dot.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-09-18 20:13:40 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-09-18 20:13:40 (GMT)
commitb5ba77ebd72c7e994a30eda5422dffde730561ec (patch)
tree488f298f3b33e7e5b8ced572be01375d66b47c23 /src/dot.h
parent35fb02903f658f5ca6880b8ad6a5c1e6ac39d64f (diff)
downloadDoxygen-b5ba77ebd72c7e994a30eda5422dffde730561ec.zip
Doxygen-b5ba77ebd72c7e994a30eda5422dffde730561ec.tar.gz
Doxygen-b5ba77ebd72c7e994a30eda5422dffde730561ec.tar.bz2
Fixed a number of compiler warnings reported by newer clang compiler
Diffstat (limited to 'src/dot.h')
-rw-r--r--src/dot.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dot.h b/src/dot.h
index a02b32d..75474ed 100644
--- a/src/dot.h
+++ b/src/dot.h
@@ -236,7 +236,6 @@ class DotCallGraph
DotNode *m_startNode;
static int m_curNodeNumber;
QDict<DotNode> *m_usedNodes;
- int m_recDepth;
bool m_inverse;
QCString m_diskName;
Definition * m_scope;
@@ -406,11 +405,10 @@ class DotRunnerQueue
class DotWorkerThread : public QThread
{
public:
- DotWorkerThread(int id,DotRunnerQueue *queue);
+ DotWorkerThread(DotRunnerQueue *queue);
void run();
void cleanup();
private:
- int m_id;
DotRunnerQueue *m_queue;
QList<DotRunner::CleanupItem> m_cleanupItems;
};