Browse Source

fix incorrect inline tags

David Rose 19 years ago
parent
commit
31b32af94b
2 changed files with 11 additions and 11 deletions
  1. 2 2
      panda/src/ode/odeSpace.h
  2. 9 9
      panda/src/ode/odeWorld.h

+ 2 - 2
panda/src/ode/odeSpace.h

@@ -69,8 +69,8 @@ PUBLISHED:
   INLINE void enable();
   INLINE void enable();
   INLINE void disable();
   INLINE void disable();
   INLINE int is_enabled();
   INLINE int is_enabled();
-  INLINE void set_auto_collide_world(OdeWorld&);
-  INLINE void set_auto_collide_joint_group(OdeJointGroup&);
+  void set_auto_collide_world(OdeWorld&);
+  void set_auto_collide_joint_group(OdeJointGroup&);
 
 
   void add(OdeGeom& geom);
   void add(OdeGeom& geom);
   void add(OdeSpace& space);
   void add(OdeSpace& space);

+ 9 - 9
panda/src/ode/odeWorld.h

@@ -80,15 +80,15 @@ PUBLISHED:
   INLINE void step_fast1(dReal stepsize, int maxiterations);
   INLINE void step_fast1(dReal stepsize, int maxiterations);
 
 
   INLINE int compare_to(const OdeWorld &other) const;
   INLINE int compare_to(const OdeWorld &other) const;
-  INLINE void init_surface_table(PN_uint8 num_surfaces);
-  INLINE void assign_surface_body(OdeBody& body, int surface);
-  INLINE void set_surface_entry(PN_uint8 pos1, PN_uint8 pos2, 
-                                dReal mu, 
-                                dReal bounce, 
-                                dReal bounce_vel, 
-                                dReal soft_erp,
-                                dReal soft_cfm,
-                                dReal slip);
+  void init_surface_table(PN_uint8 num_surfaces);
+  void assign_surface_body(OdeBody& body, int surface);
+  void set_surface_entry(PN_uint8 pos1, PN_uint8 pos2, 
+                         dReal mu, 
+                         dReal bounce, 
+                         dReal bounce_vel, 
+                         dReal soft_erp,
+                         dReal soft_cfm,
+                         dReal slip);
   
   
     
     
 public: 
 public: