fix compiler warning on linux
parent
ae9bca2b1e
commit
564934a9f1
|
@ -11,7 +11,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