diff --git a/vm/code_blocks.hpp b/vm/code_blocks.hpp index 8aa8b5693f..075fe389b4 100644 --- a/vm/code_blocks.hpp +++ b/vm/code_blocks.hpp @@ -11,7 +11,7 @@ struct code_block bool free_p() const { - return header & 1 == 1; + return (header & 1) == 1; } code_block_type type() const