From: ehofman Date: Thu, 27 Nov 2003 14:34:37 +0000 (+0000) Subject: gcc 2.95 and 3.0 requite handleTimer to be public X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2be85c1b1b8db11cd0161ef06a88b25d95b0f5e6;p=flightgear.git gcc 2.95 and 3.0 requite handleTimer to be public --- diff --git a/src/Scripting/NasalSys.hxx b/src/Scripting/NasalSys.hxx index 0de8fcd36..36473ed36 100644 --- a/src/Scripting/NasalSys.hxx +++ b/src/Scripting/NasalSys.hxx @@ -35,13 +35,15 @@ private: void hashset(naRef hash, const char* key, naRef val); void logError(); naRef parse(const char* filename, const char* buf, int len); - void handleTimer(NasalTimer* t); naContext _context; naRef _globals; naRef _timerHash; int _nextTimerHashKey; + +public: + void handleTimer(NasalTimer* t); }; #endif // __NASALSYS_HXX