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
|
||||
|
||||
operator PrimitiveType() const
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
//HJ, unnecessary compilation problems. HJ, 28/Sep/2010
|
||||
// operator PrimitiveType() const
|
||||
// {
|
||||
// return *this;
|
||||
// }
|
||||
|
||||
operator PrimitiveType&()
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
// operator PrimitiveType&()
|
||||
// {
|
||||
// return *this;
|
||||
// }
|
||||
};
|
||||
|
||||
|
||||
|
|
Reference in a new issue