Merge branch 'master' of git://factorcode.org/git/factor
commit
44109900de
|
@ -9,7 +9,7 @@ struct free_heap_block
|
||||||
|
|
||||||
bool free_p() const
|
bool free_p() const
|
||||||
{
|
{
|
||||||
return header & 1 == 1;
|
return (header & 1) == 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
cell size() const
|
cell size() const
|
||||||
|
|
|
@ -147,7 +147,7 @@ struct object {
|
||||||
to do anything with it if its free */
|
to do anything with it if its free */
|
||||||
bool free_p() const
|
bool free_p() const
|
||||||
{
|
{
|
||||||
return h.value & 1 == 1;
|
return (h.value & 1) == 1;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -221,7 +221,7 @@ struct code_block
|
||||||
|
|
||||||
bool free_p() const
|
bool free_p() const
|
||||||
{
|
{
|
||||||
return header & 1 == 1;
|
return (header & 1) == 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
code_block_type type() const
|
code_block_type type() const
|
||||||
|
|
Loading…
Reference in New Issue