
19 Mar
2005
19 Mar
'05
5:35 a.m.
"Aleksey Gurtovoy" <agurtovoy@meta-comm.com> wrote
Arkadiy Vertleyb writes:
I got the impression that the ETI bug has made its way into VC71 ...
I'd suggest you to post a query to MSVC-specific newsgroup, as Microsoft compiler engineers are obviously in a better position to answer your question.
What would be a good MSVC-specific newsgroup? BTW, here is a minimal example that demonstrates it: template<int n> struct Y { typedef int type; }; template<> struct Y<4> {}; template<class T> T foo(); template <class T> struct X { typedef Y<sizeof(foo<T>())>::type type; }; int main() { return 0; } Regards, Arkadiy