Sha256: 4b48fe4d2363a1975d9c7779d15763b6c834899ee6c9402495a8dd03ef2f7222
Contents?: true
Size: 529 Bytes
Versions: 135
Compression:
Stored size: 529 Bytes
Contents
/* * It is known that this code not compiled by following compilers: * * It is known that this code compiled by following compilers: * * MSVC 6 * MSVC 8 Beta */ /* * This code represent what STLport waits from a compiler which support * member template classes (!_STLP_NO_MEMBER_TEMPLATE_CLASSES) */ template <typename T1> struct A { template <typename T2> struct B { typedef T2 _Type; }; }; template <typename T1, typename T2> struct C { typedef typename A<T1>:: template B<T2>::_Type ABType; };
Version data entries
135 entries across 135 versions & 2 rubygems