]> git.mxchange.org Git - simgear.git/commitdiff
John Ellson:
authorcurt <curt>
Wed, 4 Jan 2006 16:44:08 +0000 (16:44 +0000)
committercurt <curt>
Wed, 4 Jan 2006 16:44:08 +0000 (16:44 +0000)
This patch fixes this SimGear compile error on x86_64 Fedora Development with gcc-4.1:

placement.hxx:49: error: extra qualification ‘SGModelPlacement::’ on member ‘init’

simgear/scene/model/placement.hxx

index 8130c4905f6a6ba04f489b5715a573f5eaf38e06..1b7a4c264ac6b3d402ef2fb4be13eff33ef469d8 100644 (file)
@@ -46,7 +46,7 @@ public:
   SGModelPlacement ();
   virtual ~SGModelPlacement ();
 
-  virtual void SGModelPlacement::init( ssgBranch * model );
+  virtual void init( ssgBranch * model );
 
   virtual void update();