Removed unnecessary cast: derivation (to remove completely)
This commit is contained in:
parent
682d3a2046
commit
1d379f54dc
1 changed files with 9 additions and 8 deletions
|
@ -69,15 +69,16 @@ public:
|
||||||
|
|
||||||
// Member operators
|
// Member operators
|
||||||
|
|
||||||
operator PrimitiveType() const
|
//HJ, unnecessary compilation problems. HJ, 28/Sep/2010
|
||||||
{
|
// operator PrimitiveType() const
|
||||||
return *this;
|
// {
|
||||||
}
|
// return *this;
|
||||||
|
// }
|
||||||
|
|
||||||
operator PrimitiveType&()
|
// operator PrimitiveType&()
|
||||||
{
|
// {
|
||||||
return *this;
|
// return *this;
|
||||||
}
|
// }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue