Kaydet (Commit) e8813670 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid reserved identifier

Change-Id: If0194bf8c888bc743b64984f6b655be4fe52aa1b
üst d1353622
...@@ -51,10 +51,10 @@ namespace canvas ...@@ -51,10 +51,10 @@ namespace canvas
member/method access is performed by operator-> instead of member/method access is performed by operator-> instead of
the non-existing "operator.". the non-existing "operator.".
*/ */
template< class _Wrappee > class VCLObject template< class Wrappee_ > class VCLObject
{ {
public: public:
typedef _Wrappee Wrappee; typedef Wrappee_ Wrappee;
VCLObject() : VCLObject() :
mpWrappee( new Wrappee() ) mpWrappee( new Wrappee() )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment