Код (C++): 1) int (__stdcall* func_p0)(int, int), (__cdecl *volatile func_p1)(int, int) = nullptr; clang: error : cdecl and stdcall attributes are not compatible mingw32-g++: error : cdecl and stdcall attributes are not compatible cl: ok 2) enum _bools : bool { tTrue, tFalse, ovrhd }; _bools rc; rc = tTrue; rc = tFalse; rc = ovrhd; // msc присвоит 2 clang: error : enumerator value 2 is not representable in the underlying type 'bool' mingw32-g++: error: enumerator value 2 is outside the range of underlying type 'bool'| cl: ok почемуто ms c себя ведёт более волатильно. а вообще, может есть гденить инфа актуальные что одними компилится а другими нет?