Subject: Re: [Boost-users] reference_wrapper on Boost 1.57
From: gast128 (gast128_at_[hidden])
Date: 2014-11-06 14:44:12


ok can be solved by not using pointer to function type, but function type:

void F()
{
   boost::reference_wrapper<float (float)> wrap(cosf);
}