From 389154b530795b2fa31cd5bff9ba556207ef4ef0 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 29 Nov 2001 15:10:05 +0000 Subject: [PATCH] Minor fix to address SGI MIPSpro regression failure. [SVN r11807] --- include/boost/bind.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/bind.hpp b/include/boost/bind.hpp index fedd667..11c9fe1 100644 --- a/include/boost/bind.hpp +++ b/include/boost/bind.hpp @@ -910,6 +910,10 @@ template<> struct bind_t_generator template class implementation { +private: + + typedef void R; + public: implementation(F f, L const & l): f_(f), l_(l) {}