wchar_tは何バイト?

wchar_tは、VC++では2バイト、GCCでは4バイトですが
Comeauでも4バイトのようです。

int main()
{
    static_assert(sizeof(wchar_t) == 2, "not 2 bytes"); // エラー!
    static_assert(sizeof(wchar_t) == 4, "not 4 bytes"); // OK
}