split the one constructor into two

[SVN r21861]
This commit is contained in:
Jeremy Siek
2004-01-21 16:20:39 +00:00
parent 564ed3ed88
commit 4abd97910d

View File

@ -26,7 +26,9 @@ namespace boost {
typedef void pointer;
typedef void reference;
explicit function_output_iterator(const UnaryFunction& f = UnaryFunction())
explicit function_output_iterator() {}
explicit function_output_iterator(const UnaryFunction& f)
: m_f(f) {}
struct output_proxy {