
30 Apr
2011
30 Apr
'11
7:41 p.m.
2011/5/1 Phil Bouchard <philippe@fornux.com>
On 4/30/2011 12:14 PM, TONGARI wrote:
What if block_ptr<T> a(make_block<T>(whatever)); v.s. block_ptr<T> a(new block<T>(whatever)); ?
I just confirmed that there is no difference between
block_ptr<T> a = make_block<T>(whatever);
and block_ptr<T> a(make_block<T>(whatever));
I mean, block_ptr<T> a(...); & block_ptr<T> a = ...; may have some difference, I'm not sure...