remove needless virtuals
authorEvan Martin <martine@danga.com>
Sat, 8 Jan 2011 23:17:33 +0000 (15:17 -0800)
committerEvan Martin <martine@danga.com>
Sat, 8 Jan 2011 23:17:33 +0000 (15:17 -0800)
src/build.cc

index 50c7eef..8ed6f6a 100644 (file)
@@ -10,9 +10,9 @@
 
 struct BuildStatus {
   BuildStatus();
-  virtual void PlanHasTotalEdges(int total);
-  virtual void BuildEdgeStarted(Edge* edge);
-  virtual void BuildEdgeFinished(Edge* edge);
+  void PlanHasTotalEdges(int total);
+  void BuildEdgeStarted(Edge* edge);
+  void BuildEdgeFinished(Edge* edge);
 
   time_t last_update_;
   int finished_edges_, total_edges_;