Re: Kernel v0.3
"Lars Gullik Bjønnes" wrote: > I see you have a method: bool InsetBuffer::compare(Inset const * x) > const { > > In the STD lib compare returns an int not a bool. Can you change that? > a == b -> 0 > a < b -> -1 > a > b -> 1 > (AFAIR) No, in the STL, the tradition is to distuingish between the C
Re: Kernel v0.3
I see you have a method: bool InsetBuffer::compare(Inset const * x) const { In the STD lib compare returns an int not a bool. Can you change that? a == b -> 0 a < b -> -1 a > b -> 1 (AFAIR) Lgb