12 Dec
2012
12 Dec
'12
4:04 p.m.
On 12.12.2012, at 16:14, Szymon Gatner wrote:
Hi,
How does std::make_exception_ptr() work (as I assume it does not throw & return current_exception() as boost::copy_exception does)? Any suggestions welcome.
By using compiler-specific knowledge of how the exception system works. Or the same way as boost::copy_exception, like GCC's implementation. IOW, it does throw. Sebastian