From d674e50591a88147c7433fb131ccd6da13510c3b Mon Sep 17 00:00:00 2001
From: ehofman <ehofman>
Date: Thu, 10 Nov 2005 09:55:57 +0000
Subject: [PATCH] gcc 4.0 fix.

---
 simgear/structure/event_mgr.hxx | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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;
-- 
2.39.5