From 564934a9f1c1b30d266c29d25bb740b36fbaf62a Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sun, 13 Dec 2009 16:10:30 -0600 Subject: [PATCH] fix compiler warning on linux --- vm/code_blocks.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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