You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
template
class IsStreamInsertable {
template<typename SS, typename TT>
static auto test(int)
-> decltype(std::declval<SS&>() << std::declval(), std::true_type());
template<typename, typename>
static auto test(...)->std::false_type;
public:
static const bool value = decltype(test<std::ostream, const T&>(0))::value;
};
When I am building I meet the "error C2872: 'std': ambiguous symbol" in static auto test(int)
-> decltype(std::declval<SS&>() << std::declval(), std::true_type());
Please, help me.
How to build cpu version of ATen on Windows Platform?
The text was updated successfully, but these errors were encountered: