See t33
Logged In: YES user_id=1568577 Originator: YES
Here is how this occurs in OGRE:
template <class TContainer, class TContainerValueType, typename TCompValueType> class RadixSort { public: typedef typename TContainer::iterator ContainerIter; };
So in fact the summary is wrong. It should be: typedef for type parameter member
It seems that this will cause no compile errors in ogre4j as there are no public typedefs for RadixSort.
Log in to post a comment.
Logged In: YES
user_id=1568577
Originator: YES
Here is how this occurs in OGRE:
template <class TContainer, class TContainerValueType, typename TCompValueType>
class RadixSort {
public:
typedef typename TContainer::iterator ContainerIter;
};
So in fact the summary is wrong. It should be:
typedef for type parameter member
It seems that this will cause no compile errors in ogre4j as there are no public typedefs for RadixSort.