support for template typedefs inside the defining template
Status: Alpha
Brought to you by:
skieble
see bug 1714372.
In OGRE this is the case with:
namespace Ogre {
template <typename T, unsigned Alignment = 0>
class AlignedAllocator
{
template <typename U>
struct rebind
{
typedef AlignedAllocator<U, Alignment> other;
};
};
}
currently that class is on ignore_list.xml