From d912747a68c38baa1d19e07067d8c691f29f8198 Mon Sep 17 00:00:00 2001 From: John Fultz Date: Tue, 21 Jul 2015 10:18:57 -0500 Subject: Visual Studio build maintenance. * Fix compiler warnings * Add Visual Studio 2013 solution * Tweak .pro files * Most importantly, rename main 'quackle' project to 'libquackle' to avoid solution-level name conflict. This only affects the VS build. --- gaddag.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gaddag.h') diff --git a/gaddag.h b/gaddag.h index ca15a63..1cf6319 100755 --- a/gaddag.h +++ b/gaddag.h @@ -47,7 +47,7 @@ GaddagNode::letter() const inline bool GaddagNode::isTerminal() const { - return data[3] & 0x40 /*0b01000000*/; + return (data[3] & 0x40) != 0 /*0b01000000*/; } inline const GaddagNode * -- cgit v1.2.3