
28 May
2004
28 May
'04
12:12 p.m.
Jonathan Wakely wrote:
On Fri, May 28, 2004 at 12:57:56PM +0200, Toon Knapen wrote:
Apparantly vacpp has a problem on lines 97,98 and 99 of boost/test/detail/basic_cstring/basic_cstring.hpp. self_type& trim_left(self_type exclusions = self_type() ) ; // line 97
How about overloading the function to remove the default arg?
self_type& trim_left(self_type exclusions);
self_type& trim_left() { return trim_left(self_type()); }
Even better and works fine too.