fix compiler warning on linux

db4
Slava Pestov 2009-12-13 16:10:30 -06:00
parent ae9bca2b1e
commit 564934a9f1
1 changed files with 1 additions and 1 deletions

View File

@ -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