$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2002-03-11 08:42:16
From: "Howard Hinnant" <hinnant_at_[hidden]>
> 5.  This needs a do-the-right-thing clause <sigh>.  Consider:
> 
> std::vector<double> v(10000UL, 0);
> 
> This will match:
> 
> template<class F> vector::vector(size_type n, F f);
> 
> instead of:
> 
> vector(size_type, const value_type&);
The way I approach these things is by being explicit:
template<class F> vector::vector(size_type n, init_tag, F f);