Removed unnecessary cast: derivation (to remove completely)

This commit is contained in:
Hrvoje Jasak 2010-09-29 20:00:05 +01:00
parent 682d3a2046
commit 1d379f54dc

View file

@ -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;
} // }
}; };