C++11 VS 2012 functor seems to choke when I have more than 5 parameters
- by bobobobo
function <void ( int a, int b, int ia, int ib, bool rev, const Vector4f& color )>
benchTris = [&pts]( int a, int b, int ia, int ib, bool rev, const Vector4f& color )
{
}
The error is:
error C2027: use of undefined type 'std::_Get_function_impl<_Tx>'
with
[
_Tx=void (int,int,int,int,bool,const…