Avoid reserved identifier

Change-Id: If0194bf8c888bc743b64984f6b655be4fe52aa1b
This commit is contained in:
Stephan Bergmann 2016-04-13 23:13:04 +02:00
parent d13536228f
commit e88136701a

View file

@ -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() )