Thread Previous • Date Previous • Date Next • Thread Next |
Just a note, the struct removed is a bit field (https://en.wikipedia.org/wiki/Bit_field) so both booleans were stored in one byte; if they are replaced by two bools, they occupy 2 bytes, thus the overhead is bigger. v.Remove unneeded struct, replace by a simple variables to escape overhead.
Thread Previous • Date Previous • Date Next • Thread Next |