* Nick Othieno -- Saturday 29 September 2007:
> ssgaSky.h:107: error: extra qualification 'ssgaCelestialBodyList::' on
> member 'ssgaCelestialBodyList'

Solution 1: use 1.8.5pre, where it's fixed   (preferred)

Solution 2:


--- ssgaSky.h   (revision 1798)
+++ ssgaSky.h   (working copy)
@@ -104,7 +104,7 @@
   ssgaCelestialBodyList ( int init = 3 )
          : ssgSimpleList ( sizeof(ssgaCelestialBody*), init ) { }

-  ssgaCelestialBodyList::~ssgaCelestialBodyList () { removeAll(); }
+  ~ssgaCelestialBodyList () { removeAll(); }

   int getNum (void) { return total ; }

@@ -192,7 +192,7 @@
   ssgaCloudLayerList ( int init = 3 )
          : ssgSimpleList ( sizeof(ssgaCloudLayer*), init ) { }

-  ssgaCloudLayerList::~ssgaCloudLayerList () { removeAll(); }
+  ~ssgaCloudLayerList () { removeAll(); }

   int getNum (void) { return total ; }


m.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Flightgear-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to