bruno@xxxxxxxxxxxxx writes: > Hi all, > > I'm having problems trying to compile the following sample code: > > // Byte / Byte > Byte operator/ (Byte& b) const { > return Byte (value / b.value); > } The argument needs to be a const reference. In this case, since Byte is so small, I'd just pass it by value, though. -- Falk