
3 Apr
2011
3 Apr
'11
8:12 p.m.
On Apr 3, 2011, at 12:22 PM, Emil Dotchevski wrote:
On Sun, Apr 3, 2011 at 11:13 AM, Lorenzo Caminiti <lorcaminiti@gmail.com
wrote: Hello all,
Boost.Local uses a special name `this_` to access the object `this` bound from the enclosing scope. Shall this name be `this_` or `_this` according to Boost practices?
Names with leading underscore should be avoided, they may be used by the compiler for its own needs.
A name beginning with an underscore not followed by a capital letter is allowable at non-global scope (provided it doesn't contain two consecutive underscores). Such names include _, _1, and _this. Josh