Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
move private variables to the bottom of the .h file
  • Loading branch information
Soeren Sonnenburg committed Dec 1, 2011
1 parent 873bb8e commit 085aa8e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/shogun/lib/DynamicObjectArray.h
Expand Up @@ -31,8 +31,6 @@ namespace shogun
*/
template<class T>class CDynamicObjectArray :public CSGObject
{
DynArray<T*> m_array;

public:
/** constructor
*
Expand Down Expand Up @@ -280,6 +278,10 @@ template<class T>class CDynamicObjectArray :public CSGObject

return casted;
}

private:
DynArray<T*> m_array;

};
}
#endif /* _DYNAMIC_OBJECT_ARRAY_H_ */

0 comments on commit 085aa8e

Please sign in to comment.