Avoid reserved identifier
Change-Id: If0194bf8c888bc743b64984f6b655be4fe52aa1b
This commit is contained in:
parent
d13536228f
commit
e88136701a
1 changed files with 2 additions and 2 deletions
|
@ -51,10 +51,10 @@ namespace canvas
|
|||
member/method access is performed by operator-> instead of
|
||||
the non-existing "operator.".
|
||||
*/
|
||||
template< class _Wrappee > class VCLObject
|
||||
template< class Wrappee_ > class VCLObject
|
||||
{
|
||||
public:
|
||||
typedef _Wrappee Wrappee;
|
||||
typedef Wrappee_ Wrappee;
|
||||
|
||||
VCLObject() :
|
||||
mpWrappee( new Wrappee() )
|
||||
|
|
Loading…
Reference in a new issue