This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: problem in using bind2nd in gcc 3.0.4
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: libstdc++ at gcc dot gnu dot org, svaikund at cisco dot com
- Date: Mon, 27 Jan 2003 12:07:07 -0600
- Subject: Re: problem in using bind2nd in gcc 3.0.4
It looks like DR 109 is causing your problem...
stl_function.h:405
#ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS
//109. Missing binders for non-const sequence elements
typename _Operation::result_type
operator()(typename _Operation::first_argument_type& __x) const {
return op(__x, value);
}
#endif
-benjamin