28 Apr
2014
28 Apr
'14
8:14 a.m.
On Monday 28 April 2014 12:11:54 you wrote:
On Sunday 27 April 2014 22:33:09 Antony Polukhin wrote:
2014-04-27 18:18 GMT+04:00 Andrey Semashev
: static const name_descr& n() BOOST_NOEXCEPT { static const name_descr descr = { __func__, // or whatever other macro sizeof(__func__) - 1, (ctti_skip_size_at_begin + ctti_skip_size_at_end) >= sizeof(__func__) - 1 ? 0 : ctti_skip_size_at_begin, (ctti_skip_size_at_begin + ctti_skip_size_at_end) >= sizeof(__func__) - 1 ? sizeof(__func__) - 1 : sizeof(__func__) - 1 - ctti_skip_size_at_end
that should be sizeof(__func__) - 1 - ctti_skip_size_at_begin - ctti_skip_size_at_end of course.
};
return descr; }