boost::function compilation
Hi,
I'm currently trying to use boost::function with VC++ 7.0 and I get the compilation error stating that
function is not a member of boost. I've already included the header
On Wed, 15 Oct 2003, Terence Ou wrote:
I'm currently trying to use boost::function with VC++ 7.0 and I get the compilation error stating that function is not a member of boost. I've already included the header
as well as the
VC++ 7.0 only supports the "portable" syntax, and as such the
boost::function class template doesn't exist for it. You'll need to use,
e.g., boost::function2
participants (2)
-
Douglas Paul Gregor
-
Terence Ou