Boost logo

Boost :

From: Arkadiy Vertleyb (vertleyb_at_[hidden])
Date: 2005-03-19 00:35:01


"Aleksey Gurtovoy" <agurtovoy_at_[hidden]> 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


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk