TypeOf is not fixed, pull request is waiting:
https://github.com/boostorg/typeof/pull/3

I needed to apply another fix to typeof.

In type_with_alignment.hpp, change line 87 ( 1.61 beta1 ) from:

#if (defined(__GNUC__) || (defined (__SUNPRO_CC) &&  (__SUNPRO_CC >= 0x5130)) || defined(__clang__))  && !defined(BOOST_TT_DISABLE_INTRINSICS)

to:

#if (defined(__GNUC__) || (defined (__SUNPRO_CC) &&  (__SUNPRO_CC >= 0x5130)) || defined(__clang__)) && !defined(_MSC_VER) && !defined(BOOST_TT_DISABLE_INTRINSICS)

Have a good day,

degski