1
0
Fork 0

Don't declare static functions in header file

This commit is contained in:
Torsten Dreyer 2011-05-31 10:35:42 +02:00
parent 2add898d90
commit 170df65081
2 changed files with 3 additions and 4 deletions

View file

@ -45,6 +45,9 @@
extern SGSky *thesky;
static bool do_delete_3Dcloud (const SGPropertyNode *arg);
static bool do_move_3Dcloud (const SGPropertyNode *arg);
static bool do_add_3Dcloud (const SGPropertyNode *arg);
FGClouds::FGClouds() :
#if 0

View file

@ -64,9 +64,5 @@ public:
};
static bool do_delete_3Dcloud (const SGPropertyNode *arg);
static bool do_move_3Dcloud (const SGPropertyNode *arg);
static bool do_add_3Dcloud (const SGPropertyNode *arg);
#endif // _FGCLOUDS_HXX