]> git.mxchange.org Git - simgear.git/commitdiff
gcc 4.0 fix.
authorehofman <ehofman>
Thu, 10 Nov 2005 09:55:57 +0000 (09:55 +0000)
committerehofman <ehofman>
Thu, 10 Nov 2005 09:55:57 +0000 (09:55 +0000)
simgear/structure/event_mgr.hxx

index 66face68f05c2d6acf8f1815920fa59ee9da22ef..746f03c0f7cd9a36ff3b6a342b78ca2439e863ba 100644 (file)
@@ -51,7 +51,9 @@ private:
     void siftDown(int n);
     void siftUp(int n);
     void growArray();
-    void check();
+
+    // gcc complains there is no function specification anywhere.
+    // void check();
 
     double _now;
     HeapEntry *_table;