blob: 218a26170a71e3b783b97cc573cb54e4fb1cd9af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-af,v 1.3 2007/07/12 19:48:43 drochner Exp $
--- src/ssgAux/ssgaSky.h.orig 2007-03-22 23:41:19.000000000 +0100
+++ src/ssgAux/ssgaSky.h
@@ -104,7 +104,7 @@ public:
ssgaCelestialBodyList ( int init = 3 )
: ssgSimpleList ( sizeof(ssgaCelestialBody*), init ) { }
- ssgaCelestialBodyList::~ssgaCelestialBodyList () { removeAll(); }
+ ~ssgaCelestialBodyList () { removeAll(); }
int getNum (void) { return total ; }
@@ -192,7 +192,7 @@ public:
ssgaCloudLayerList ( int init = 3 )
: ssgSimpleList ( sizeof(ssgaCloudLayer*), init ) { }
- ssgaCloudLayerList::~ssgaCloudLayerList () { removeAll(); }
+ ~ssgaCloudLayerList () { removeAll(); }
int getNum (void) { return total ; }
|