ソースを参照

COMP: Added virtual destructor to ctkDependency graph

That should fix the following warning:
warning: 'class ctkDependencyGraph' has virtual functions but non-virtual destructor

See http://www.cdash.org/CDash/viewBuildError.php?type=1&buildid=642781
Jean-Christophe Fillion-Robin 15 年 前
コミット
06fec0e845
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      Libs/Core/ctkDependencyGraph.h

+ 1 - 1
Libs/Core/ctkDependencyGraph.h

@@ -36,7 +36,7 @@ class CTK_CORE_EXPORT ctkDependencyGraph
 {
 public:
   ctkDependencyGraph(int nvertices);
-  ~ctkDependencyGraph();
+  virtual ~ctkDependencyGraph();
   
   void printAdditionalInfo();
   void printGraph();