考虑:
std::tuple<int , const A&> func (const A& a)
{
return std::make_tuple( 0 , std::ref(a) );
}
是std::ref
需要编写正确的和便携式的代码? (它编译罚款没有它)
背景:
如果我删除std::ref
我的代码建立罚款没有任何警告( g++-4.6 -Wall
),但不能正常运行。
在利益的界定情况A
:
struct A {
std::array<int,2> vec;
typedef int type_t;
template<typename... OPs,typename... VALs>
A& operator=(const std::pair< std::tuple<VALs...> , std::tuple<OPs...> >& e) {
for( int i = 0 ; i < vec.size() ; ++i ) {
vec[i] = eval( extract(i,e.first) , e.second );
}
}
};