Content deleted Content added
Dfaulk0306 (talk | contribs) I believe the code is creating an anonymous object, with myStream as an input parameter. We should use normal parenthesis instead of curly brackets. |
Make use of static inline in counter example. |
||
Line 71:
struct counter
{
static inline int objects_created = 0;
static inline int objects_alive = 0;
counter()
Line 91:
}
};
class X : counter<X>
|