Remove unused operator from C4V_Data helper union

Günther Brammer 2010-04-15 23:00:07 +02:00
parent f01b2be724
commit b09fc47349
1 changed files with 0 additions and 1 deletions

View File

@ -63,7 +63,6 @@ union C4V_Data
// cheat a little - assume that all members have the same length
operator void * () { return Ref; }
operator const void * () const { return Ref; }
bool operator== (C4V_Data b) { return Ref == b.Ref; }
C4V_Data& operator= (C4Value * p) { Ref = p; return *this; }
};