From: "Peter Dimov" <[EMAIL PROTECTED]>

Oops,

> Yes it will. :-)
> 
> optional<T> m;

should have been

optional<T> m(t);

> foo(m, m); // comparison inside yields false
> 
> T * p;

and this should have been

T * p = &t;

> foo(p, p); // comparison inside yields true

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to