diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-18 20:13:40 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-18 20:13:40 (GMT) |
commit | b5ba77ebd72c7e994a30eda5422dffde730561ec (patch) | |
tree | 488f298f3b33e7e5b8ced572be01375d66b47c23 /src/dot.h | |
parent | 35fb02903f658f5ca6880b8ad6a5c1e6ac39d64f (diff) | |
download | Doxygen-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.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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; }; |