From: ehofman Date: Thu, 10 Nov 2005 09:55:57 +0000 (+0000) Subject: gcc 4.0 fix. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d674e50591a88147c7433fb131ccd6da13510c3b;p=simgear.git gcc 4.0 fix. --- diff --git a/simgear/structure/event_mgr.hxx b/simgear/structure/event_mgr.hxx index 66face68..746f03c0 100644 --- a/simgear/structure/event_mgr.hxx +++ b/simgear/structure/event_mgr.hxx @@ -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;